summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2016-08-08 15:07:32 +0200
committerAttila Molnar <attilamolnar@hush.com>2016-08-08 15:07:32 +0200
commit4d3601938593685b3f45439227838f16ee773cdc (patch)
treec18df6fc1c00439f35434e41fce583a7ae50ba88 /make
parent2b3b0ce142c16d50462e644821983c525874f10e (diff)
Include <array> or <tr1/array> globally
Diffstat (limited to 'make')
-rw-r--r--make/test/compiler.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/make/test/compiler.cpp b/make/test/compiler.cpp
index edf08b8e3..e2cbd9f64 100644
--- a/make/test/compiler.cpp
+++ b/make/test/compiler.cpp
@@ -18,9 +18,11 @@
#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