From 3c122d81beb12e8f560fa0e23c37ca2415e2c94e Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 30 May 2014 12:09:47 +0000 Subject: [PATCH] Add a _LIBCPP_CONSTEXPR that was missed in r170026. (clang doesn't complain about this, but gcc does. This is necessary for a follow-up patch that will enable _LIBCPP_CONSTEXPR for gcc.) git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@209888 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/limits | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/limits b/include/limits index d917c577..22169665 100644 --- a/include/limits +++ b/include/limits @@ -768,7 +768,7 @@ template template _LIBCPP_CONSTEXPR const int numeric_limits::digits10; template - const int numeric_limits::max_digits10; + _LIBCPP_CONSTEXPR const int numeric_limits::max_digits10; template _LIBCPP_CONSTEXPR const bool numeric_limits::is_signed; template