Merge branch 'dm-reorder'
Chaos Ci / test (push) Successful in 3m18s
Chaos Ci / benchmark (push) Successful in 2m0s

Reorder data members of some entities to mitigate performance issues on
ARM.
This commit is contained in:
hashlag
2026-07-31 02:07:51 +03:00
parent 58fdd3bf5d
commit 8b9b67aa0c
4 changed files with 13 additions and 13 deletions
+3 -3
View File
@@ -49,11 +49,11 @@ public:
}
private:
bool IsInitialized_;
std::array<uint8_t, 256> Lookup_;
uint8_t I_;
uint8_t J_;
std::array<uint8_t, 256> Lookup_;
bool IsInitialized_;
void EnsureInitialized() const
{