From 865a86a0fdabe9d2a31ff7f8ac78b052e2871821 Mon Sep 17 00:00:00 2001 From: Ville Voutilainen Date: Wed, 15 Nov 2017 22:42:58 +0200 Subject: Fix gcd breakage. * include/std/numeric (gcd): Use remove_cv_t, not remove_cv. From-SVN: r254785 --- libstdc++-v3/include/std/numeric | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libstdc++-v3/include/std/numeric') diff --git a/libstdc++-v3/include/std/numeric b/libstdc++-v3/include/std/numeric index a3a447d..8864c95 100644 --- a/libstdc++-v3/include/std/numeric +++ b/libstdc++-v3/include/std/numeric @@ -135,7 +135,7 @@ namespace __detail static_assert(is_integral_v<_Nn>, "gcd arguments are integers"); static_assert(!is_same_v, bool>, "gcd arguments are not bools"); - static_assert(!is_same_v, bool>, + static_assert(!is_same_v, bool>, "gcd arguments are not bools"); return __detail::__gcd(__m, __n); } -- cgit v1.1