aboutsummaryrefslogtreecommitdiffstats
path: root/make/test/compiler.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2018-07-31 03:00:38 +0100
committerGravatar Sadie Powell2019-01-25 02:46:43 +0000
commit9828a0651421d70a17a83dbe44b4c2e7fe2c764b (patch)
tree44a61090fcfa6a54baebc7aa490a63f17171a130 /make/test/compiler.cpp
parentMerge branch 'insp3' into master (diff)
Switch the build system to use C++14.
Diffstat (limited to 'make/test/compiler.cpp')
-rw-r--r--make/test/compiler.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/make/test/compiler.cpp b/make/test/compiler.cpp
index f01423325..1752aaa45 100644
--- a/make/test/compiler.cpp
+++ b/make/test/compiler.cpp
@@ -18,22 +18,6 @@
*/
-#include <iostream>
-#if defined _LIBCPP_VERSION
-# include <array>
-# include <type_traits>
-# include <unordered_map>
-#else
-# include <tr1/array>
-# include <tr1/type_traits>
-# include <tr1/unordered_map>
-#endif
-
-#if defined __llvm__ && !defined __clang__ && __GNUC__ == 4 && __GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ == 1
-# error "LLVM-GCC 4.2.1 has broken visibility support."
-#endif
-
int main() {
- std::cout << "Hello, World!" << std::endl;
return 0;
}