CI updates

This commit is contained in:
Markus F.X.J. Oberhumer
2023-08-27 13:30:51 +02:00
parent b526eed346
commit 25a3c109c1
24 changed files with 59 additions and 42 deletions
+5 -5
View File
@@ -57,13 +57,13 @@ public:
virtual const int *getCompressionMethods(int method, int level) const = 0;
virtual const int *getFilters() const = 0;
// canPack() should throw a cantPackException eplaining why it cannot pack
// canPack() should throw a cantPackException explaining why it cannot pack
// a recognized format.
// canPack() can return -1 to fail early; see class PackMaster
// canPack() can also return -1 to fail early; see class PackMaster
virtual tribool canPack() = 0;
// canUnpack() should throw a cantUnpackException eplaining why it cannot pack
// canUnpack() should throw a cantUnpackException explaining why it cannot pack
// a recognized format.
// canUnpack() can return -1 to fail early; see class PackMaster
// canUnpack() can also return -1 to fail early; see class PackMaster
virtual tribool canUnpack() = 0;
// PackMaster entries
@@ -80,7 +80,7 @@ protected:
InputFile *const fi; // reference
union { // unnamed union
const upx_int64_t file_size; // must get set by constructor
const upx_uint64_t file_size_u; // explicitly unsigned
const upx_uint64_t file_size_u; // (explicitly unsigned)
};
PackHeader ph; // must be filled by canUnpack(); also used by UiPacker
};