Use __LONG_LONG_MAX__ instead of LONG_LONG_MAX in test
authorJonathan Wakely <jwakely@redhat.com>
Thu, 19 Oct 2017 13:56:55 +0000 (14:56 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Thu, 19 Oct 2017 13:56:55 +0000 (14:56 +0100)
* testsuite/decimal/conversion-to-integral.cc: Use predefined macro
instead of non-standard glibc one.

From-SVN: r253894

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/decimal/conversion-to-integral.cc

index 9177f044fca8920a6ddc39f74ce69e97596fa874..c02f9bf418a038e04d29bb38eab5a8a731ae4ee9 100644 (file)
@@ -1,3 +1,8 @@
+2017-10-19  Jonathan Wakely  <jwakely@redhat.com>
+
+       * testsuite/decimal/conversion-to-integral.cc: Use predefined macro
+       instead of non-standard glibc one.
+
 2017-10-16  François Dumont  <fdumont@gcc.gnu.org>
 
        PR libstdc++/82558
index 6fd59a67b708d5d496d9875da7d380bd3a70c1c4..cc48fa8729df4af9e3cc9fff6f2959a7adfebfef 100644 (file)
@@ -64,7 +64,7 @@ void
 conversion_to_integral_128 (void)
 {
   #undef MAXVAL
-  #define MAXVAL LONG_LONG_MAX
+  #define MAXVAL __LONG_LONG_MAX__
   decimal128 a, b (1), c (-1), d (MAXVAL), e (-MAXVAL);
   long long ll;