fix: optimization: PVS-Studio warning V802
Rearranged structure fields in decreasing order of size to reduce structure size from 32 to 24 and 12 to 8 bytes on 64-bit platforms. Reported by: PVS-Studio Signed-off-by: Vyacheslav Ivanov <islavaivanov76@gmail.com>
This commit is contained in:
parent
c4cc71623d
commit
c3e4341a04
@ -38,8 +38,8 @@ struct ItemDef {
|
||||
|
||||
struct {
|
||||
itemid_t id;
|
||||
item_funcs_set funcsset {};
|
||||
blockid_t placingBlock;
|
||||
item_funcs_set funcsset {};
|
||||
bool emissive = false;
|
||||
} rt {};
|
||||
|
||||
|
||||
@ -11,12 +11,12 @@
|
||||
namespace fs = std::filesystem;
|
||||
|
||||
class ArgsReader {
|
||||
int argc;
|
||||
char** argv;
|
||||
int pos = 0;
|
||||
const char* last = "";
|
||||
char** argv;
|
||||
int argc;
|
||||
int pos = 0;
|
||||
public:
|
||||
ArgsReader(int argc, char** argv) : argc(argc), argv(argv) {}
|
||||
ArgsReader(int argc, char** argv) : argv(argv), argc(argc) {}
|
||||
|
||||
void skip() {
|
||||
pos++;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user