aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2021-05-20 21:12:15 +0100
committerJonathan Wakely <jwakely@redhat.com>2021-05-20 21:12:15 +0100
commit64ba45c76e831914764b70207d69a06f800b43a4 (patch)
tree929a0d31d10cedc6d4119c71d83e7a560d17bf7e /libstdc++-v3
parent6b42b5a8a207de5e021a2916281f46bcd60b20d2 (diff)
downloadgcc-64ba45c76e831914764b70207d69a06f800b43a4.zip
gcc-64ba45c76e831914764b70207d69a06f800b43a4.tar.gz
gcc-64ba45c76e831914764b70207d69a06f800b43a4.tar.bz2
libstdc++: Do not use static_assert without message in C++11
libstdc++-v3/ChangeLog: * include/bits/random.tcc (__representable_as_double) (__p1_representable_as_double): Add "" to static asserts.
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/include/bits/random.tcc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/include/bits/random.tcc b/libstdc++-v3/include/bits/random.tcc
index bf43970..1357e18 100644
--- a/libstdc++-v3/include/bits/random.tcc
+++ b/libstdc++-v3/include/bits/random.tcc
@@ -811,8 +811,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
constexpr bool
__representable_as_double(_Tp __x) noexcept
{
- static_assert(numeric_limits<_Tp>::is_integer);
- static_assert(!numeric_limits<_Tp>::is_signed);
+ static_assert(numeric_limits<_Tp>::is_integer, "");
+ static_assert(!numeric_limits<_Tp>::is_signed, "");
// All integers <= 2^53 are representable.
return (__x <= (1ull << __DBL_MANT_DIG__))
// Between 2^53 and 2^54 only even numbers are representable.
@@ -824,8 +824,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
constexpr bool
__p1_representable_as_double(_Tp __x) noexcept
{
- static_assert(numeric_limits<_Tp>::is_integer);
- static_assert(!numeric_limits<_Tp>::is_signed);
+ static_assert(numeric_limits<_Tp>::is_integer, "");
+ static_assert(!numeric_limits<_Tp>::is_signed, "");
return numeric_limits<_Tp>::digits < __DBL_MANT_DIG__
|| (bool(__x + 1u) // return false if x+1 wraps around to zero
&& __detail::__representable_as_double(__x + 1u));