cmake/c++11-test-cstdint.cpp@5b5c77c7f3dd
cmake/c++11-test-cstdint.cpp
Sat, 24 Aug 2013 16:52:45 +0300
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Sat, 24 Aug 2013 16:52:45 +0300
- changeset 484
- 5b5c77c7f3dd
- parent 473
-
2a84149fe642
- permissions
- -rw-r--r--
made LDFile interfacing a bit clearer
#include <cstdint>
int main()
{
bool test =
(sizeof(int8_t) == 1) &&
(sizeof(int16_t) == 2) &&
(sizeof(int32_t) == 4) &&
(sizeof(int64_t) == 8);
return test ? 0 : 1;
}