all: more assorted cleanups; NFCI

This commit is contained in:
Markus F.X.J. Oberhumer
2024-02-02 10:17:16 +01:00
parent d429801498
commit 718ec468ff
26 changed files with 307 additions and 125 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ class UiPacker;
class Filter;
/*************************************************************************
// PackerBase: purely abstract minimal base class for all packers
// PackerBase: abstract minimal base class for all packers
//
// clients: PackMaster, UiPacker
**************************************************************************/
@@ -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 to avoid casts)
const upx_uint64_t file_size_u; // (explicitly unsigned to avoid -Wsign-compare casts)
};
PackHeader ph; // must be filled by canUnpack(); also used by UiPacker
};