mirror of
https://github.com/halpz/re3.git
synced 2025-07-26 16:22:44 +00:00
Fixed typos and made all assert functions optional
This commit is contained in:
@ -15,7 +15,7 @@ struct cAMCrime {
|
||||
}
|
||||
};
|
||||
|
||||
static_assert(sizeof(cAMCrime) == 20, "cAMCrime: error ");
|
||||
VALIDATE_SIZE(cAMCrime, 20);
|
||||
|
||||
class cPoliceRadioQueue
|
||||
{
|
||||
@ -43,4 +43,4 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
static_assert(sizeof(cPoliceRadioQueue) == 444, "cPoliceRadioQueue: error ");
|
||||
VALIDATE_SIZE(cPoliceRadioQueue, 444);
|
||||
|
Reference in New Issue
Block a user