]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/23_containers/unordered_map/range_access.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / unordered_map / range_access.cc
index fd643812cccfaaae74f636299f493da2fdd7f269..3550c7149e740504ab5b34eb037e209af5db554c 100644 (file)
@@ -1,6 +1,6 @@
 // { dg-do compile { target c++11 } }
 
-// Copyright (C) 2010-2018 Free Software Foundation, Inc.
+// Copyright (C) 2010-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
@@ -25,6 +25,6 @@ void
 test01()
 {
   std::unordered_map<int, double> um{{1, 1.0}, {2, 2.0}, {3, 3.0}};
-  std::begin(um);
-  std::end(um);
+  (void) std::begin(um);
+  (void) std::end(um);
 }