From 79b5197e5d39c7ef411555c6c8dfb35f06616678 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 5 Jan 2020 21:12:11 +0100 Subject: [PATCH] Fixed CXX tests --- test/core/CMakeLists.txt | 1 - test/core/core_force_cxx11.cpp | 14 -------------- 2 files changed, 15 deletions(-) delete mode 100644 test/core/core_force_cxx11.cpp diff --git a/test/core/CMakeLists.txt b/test/core/CMakeLists.txt index 3e47df2e..b8dd9683 100644 --- a/test/core/CMakeLists.txt +++ b/test/core/CMakeLists.txt @@ -3,7 +3,6 @@ glmCreateTestGTC(core_cpp_defaulted_ctor) glmCreateTestGTC(core_force_aligned_gentypes) glmCreateTestGTC(core_force_ctor_init) glmCreateTestGTC(core_force_cxx03) -glmCreateTestGTC(core_force_cxx11) glmCreateTestGTC(core_force_cxx98) glmCreateTestGTC(core_force_arch_unknown) glmCreateTestGTC(core_force_compiler_unknown) diff --git a/test/core/core_force_cxx11.cpp b/test/core/core_force_cxx11.cpp deleted file mode 100644 index cc57e08a..00000000 --- a/test/core/core_force_cxx11.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#ifndef GLM_FORCE_CXX11 -# define GLM_FORCE_CXX11 -#endif - -#include -#include - -int main() -{ - int Error = 0; - - return Error; -} -