diff options
author | Chris Robinson <[email protected]> | 2014-05-05 14:21:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-05 14:21:09 -0700 |
commit | cbb94405db8f28e95fd60b611db479605b5d2a61 (patch) | |
tree | 20d550cb28c42b50e7b48026fdc27070fa817ba0 | |
parent | 2edd04717838bee32e2ecc9a1939b9c54ae979e7 (diff) |
Test _Alignas with 16 instead of 4
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 616a1999..65cb0959 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -147,7 +147,7 @@ HAVE_C11_STATIC_ASSERT) # Check if we have C11 alignas CHECK_C_SOURCE_COMPILES( -"_Alignas(4) int foo; +"_Alignas(16) int foo; int main() { return 0; |