]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/21_strings/basic_string/capacity/wchar_t/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / capacity / wchar_t / 2.cc
index ad254b40e656dbf296f7a2c8656df3b36bafbc9b..f947a65e9ceed1e9ca5686ba3205eaf99deb25b6 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-05-11 bkoz
 
-// Copyright (C) 1999-2014 Free Software Foundation, Inc.
+// Copyright (C) 1999-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
 // http://gcc.gnu.org/ml/libstdc++/2001-11/msg00150.html
 void test02()
 {
-  bool test __attribute__((unused)) = true;
-
   std::wstring str01 = L"twelve chars";
   // str01 becomes shared
   std::wstring str02 = str01;
-  str01.reserve(1);
+#if __cplusplus <= 201703L
+  str01.reserve();
+#else
+  str01.shrink_to_fit(); // reserve is deprecated in C++20
+#endif
   VERIFY( str01.capacity() == 12 );
 }