diff options
author | Alec Thomas <alec@swapoff.org> | 2014-10-27 11:20:05 +1100 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2014-10-27 11:20:05 +1100 |
commit | a57f7436212de0ffaf811f23d24bec8b9838a6df (patch) | |
tree | 9a043b64c94b20705d60e926f0d4478fd6d474af /cxx11/c++11-test-cstdint.cpp | |
parent | f19eaf65bcd8dac1a852b1ee5084545a44585096 (diff) | |
parent | aa0a2b3a49f34eb5c63b8a56519b30627b1ae637 (diff) |
Merge branch 'master' of github.com:alecthomas/entityx
Diffstat (limited to 'cxx11/c++11-test-cstdint.cpp')
-rw-r--r-- | cxx11/c++11-test-cstdint.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cxx11/c++11-test-cstdint.cpp b/cxx11/c++11-test-cstdint.cpp index be2878f..6ba852f 100644 --- a/cxx11/c++11-test-cstdint.cpp +++ b/cxx11/c++11-test-cstdint.cpp @@ -2,9 +2,9 @@ int main() { bool test = - (sizeof(int8_t) == 1) && - (sizeof(int16_t) == 2) && - (sizeof(int32_t) == 4) && - (sizeof(int64_t) == 8); + (sizeof(std::int8_t) == 1) && + (sizeof(std::int16_t) == 2) && + (sizeof(std::int32_t) == 4) && + (sizeof(std::int64_t) == 8); return test ? 0 : 1; } |