]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/25_algorithms/min_max.cc
Move from CPP to CXX.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / min_max.cc
index c6e8001df7071623b6b593ff5663e6e0c3f197e9..ef8acfd249f465cc86f919e97a88e4f0d02d7447 100644 (file)
@@ -88,7 +88,7 @@ void test02()
   VERIFY( 2ul == std::min(A<unsigned long>::a, 2ul) );
   VERIFY( 3ul == std::min(A<unsigned long>::a, 4ul) );
 
-#ifdef _GLIBCPP_USE_LONG_LONG
+#ifdef _GLIBCXX_USE_LONG_LONG
   VERIFY( 2ll == std::min(A<long long>::a, 2ll) );
   VERIFY( 3ll == std::min(A<long long>::a, 4ll) );
 
@@ -136,7 +136,7 @@ void test02()
   VERIFY( 3ul == std::max(A<unsigned long>::a, 2ul) );
   VERIFY( 4ul == std::max(A<unsigned long>::a, 4ul) );
 
-#ifdef _GLIBCPP_USE_LONG_LONG
+#ifdef _GLIBCXX_USE_LONG_LONG
   VERIFY( 3ll == std::max(A<long long>::a, 2ll) );
   VERIFY( 4ll == std::max(A<long long>::a, 4ll) );