CMake/Tests/CompileFeatures/cxx_alignas.cpp
Stephen Kelly e7d6e1f44f Features: Add cxx_alignas.
cxx_alignof will be a separate feature known to CMake, because
both can be implemented with separate backward compatibility
versions.
2014-04-08 11:05:56 +02:00

5 lines
36 B
C++

struct S1 {
alignas(8) int n;
};