From efeb51e163be3f4110b9dad771bee1f3dc814333 Mon Sep 17 00:00:00 2001 From: tcsullivan Date: Sun, 25 Aug 2019 16:08:47 -0400 Subject: added entityx --- lib/entityx/cxx11/c++11-test-cstdint.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/entityx/cxx11/c++11-test-cstdint.cpp (limited to 'lib/entityx/cxx11/c++11-test-cstdint.cpp') diff --git a/lib/entityx/cxx11/c++11-test-cstdint.cpp b/lib/entityx/cxx11/c++11-test-cstdint.cpp new file mode 100644 index 0000000..6ba852f --- /dev/null +++ b/lib/entityx/cxx11/c++11-test-cstdint.cpp @@ -0,0 +1,10 @@ +#include +int main() +{ + bool test = + (sizeof(std::int8_t) == 1) && + (sizeof(std::int16_t) == 2) && + (sizeof(std::int32_t) == 4) && + (sizeof(std::int64_t) == 8); + return test ? 0 : 1; +} -- cgit v1.2.3