From d9314150c2e1bb508758f75cabab043238bae07b Mon Sep 17 00:00:00 2001 From: Ferdinand Bachmann Date: Wed, 10 Mar 2021 13:55:23 +0100 Subject: [PATCH] constexpr_array: fix compile error in constexpr_array shim --- test/constexpr-array-shim.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/constexpr-array-shim.h b/test/constexpr-array-shim.h index 5235080..6863b61 100644 --- a/test/constexpr-array-shim.h +++ b/test/constexpr-array-shim.h @@ -5,7 +5,7 @@ #if defined( __cpp_lib_array_constexpr) && __cpp_lib_array_constexpr >= 201606L template -using constexpr_array = array; +using constexpr_array = std::array; #else template struct constexpr_array {