comparison 3rdparty/vmime/cmake/cmake-cxx11/Modules/CheckCXX11Features/cxx11-test-auto.cpp @ 0:a4671277546c tip

created the repository for the thymian project
author ferencd
date Tue, 17 Aug 2021 11:19:54 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a4671277546c
1
2 int main()
3 {
4 auto i = 5;
5 auto f = 3.14159f;
6 auto d = 3.14159;
7 bool ret = (
8 (sizeof(f) < sizeof(d)) &&
9 (sizeof(i) == sizeof(int))
10 );
11 return ret ? 0 : 1;
12 }