From 8564b2f8b0d563a2c328a09916e9e4e3def5978f Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Sun, 1 Apr 2018 11:29:07 +0200 Subject: #193 Dropped support for boot::shared_ptr<>, enabled C++11 support in CMake --- .../Modules/CheckCXX11Features/cxx11-test-cstdint.cpp | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 cmake/cmake-cxx11/Modules/CheckCXX11Features/cxx11-test-cstdint.cpp (limited to 'cmake/cmake-cxx11/Modules/CheckCXX11Features/cxx11-test-cstdint.cpp') diff --git a/cmake/cmake-cxx11/Modules/CheckCXX11Features/cxx11-test-cstdint.cpp b/cmake/cmake-cxx11/Modules/CheckCXX11Features/cxx11-test-cstdint.cpp deleted file mode 100644 index ca2c72dd..00000000 --- a/cmake/cmake-cxx11/Modules/CheckCXX11Features/cxx11-test-cstdint.cpp +++ /dev/null @@ -1,11 +0,0 @@ -#include - -int main() -{ - bool test = - (sizeof(int8_t) == 1) && - (sizeof(int16_t) == 2) && - (sizeof(int32_t) == 4) && - (sizeof(int64_t) == 8); - return test ? 0 : 1; -} -- cgit v1.2.3