polyvox/cmake/Modules/CheckCXX11Features/cxx11-test-auto.cpp
Matt Williams a24fcc0c03 Add C++11 compiler support detection feature
This is currently copied from http://quickgit.kde.org/index.php?p=scratch%2Fdakon%2Fcmake-cxx11.git
but there is a chance that in future it will be merged into CMake proper.
2012-11-23 15:41:25 +00:00

13 lines
165 B
C++

int main()
{
auto i = 5;
auto f = 3.14159f;
auto d = 3.14159;
bool ret = (
(sizeof(f) < sizeof(d)) &&
(sizeof(i) == sizeof(int))
);
return ret ? 0 : 1;
}