aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/cmake-cxx11/Modules/CheckCXX11Features/cxx11-test-cstdint.cpp
blob: ca2c72ddd09d7b9e7213a57155ba53eab35b7f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <cstdint>

int main()
{
	bool test =
		(sizeof(int8_t) == 1) &&
		(sizeof(int16_t) == 2) &&
		(sizeof(int32_t) == 4) &&
		(sizeof(int64_t) == 8);
	return test ? 0 : 1;
}