mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-05-13 05:56:39 +03:00
Rework fixed strings handling
This commit is contained in:
parent
4faaa86449
commit
822764d0fa
2 changed files with 21 additions and 6 deletions
|
@ -97,7 +97,6 @@ TEST(EsmFixedString, struct_size)
|
|||
ASSERT_EQ(4, sizeof(ESM::NAME));
|
||||
ASSERT_EQ(32, sizeof(ESM::NAME32));
|
||||
ASSERT_EQ(64, sizeof(ESM::NAME64));
|
||||
ASSERT_EQ(256, sizeof(ESM::NAME256));
|
||||
}
|
||||
|
||||
TEST(EsmFixedString, is_pod)
|
||||
|
@ -105,5 +104,4 @@ TEST(EsmFixedString, is_pod)
|
|||
ASSERT_TRUE(std::is_pod<ESM::NAME>::value);
|
||||
ASSERT_TRUE(std::is_pod<ESM::NAME32>::value);
|
||||
ASSERT_TRUE(std::is_pod<ESM::NAME64>::value);
|
||||
ASSERT_TRUE(std::is_pod<ESM::NAME256>::value);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue