[committed] libstdc++: Uncomment checks for <limits> enumeration types

Message ID 20230517190715.2024283-1-jwakely@redhat.com
State Accepted
Headers
Series [committed] libstdc++: Uncomment checks for <limits> enumeration types |

Checks

Context Check Description
snail/gcc-patch-check success Github commit url

Commit Message

Jonathan Wakely May 17, 2023, 7:07 p.m. UTC
  Tested powerpc64le-linux. Pushed to trunk.

-- >8 --

I don't know why these checks are disabled.

libstdc++-v3/ChangeLog:

	* testsuite/18_support/headers/limits/synopsis.cc: Uncomment
	checks for float_round_style and float_denorm_style.
---
 libstdc++-v3/testsuite/18_support/headers/limits/synopsis.cc | 2 --
 1 file changed, 2 deletions(-)
  

Patch

diff --git a/libstdc++-v3/testsuite/18_support/headers/limits/synopsis.cc b/libstdc++-v3/testsuite/18_support/headers/limits/synopsis.cc
index fe158b995cf..38e8de6adab 100644
--- a/libstdc++-v3/testsuite/18_support/headers/limits/synopsis.cc
+++ b/libstdc++-v3/testsuite/18_support/headers/limits/synopsis.cc
@@ -23,10 +23,8 @@ 
 namespace std {
   template<class T> class numeric_limits;
 
-#if 0
   enum float_round_style;
   enum float_denorm_style;
-#endif
 
   template<> class numeric_limits<bool>;