Commit a37f9d1e authored by MaximeBF's avatar MaximeBF

Fix unsigned long as unsigned unit test

parent a040fc33
......@@ -499,7 +499,7 @@ TEST(Value, Uint) {
RAPIDJSON_STATIC_ASSERT(sizeof(unsigned long) == sizeof(unsigned));
z.SetUint(1234);
EXPECT_TRUE(z.Is<unsigned long>());
EXPECT_EQ(1234ul, z.Get<unsigned>());
EXPECT_EQ(1234ul, z.Get<unsigned long>());
#endif
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment