Add [[nodiscard]] attribute to std::launder
authorJonathan Wakely <jwakely@redhat.com>
Fri, 24 Nov 2017 00:00:46 +0000 (00:00 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Fri, 24 Nov 2017 00:00:46 +0000 (00:00 +0000)
* libsupc++/new (launder): Add nodiscard attribute.
* testsuite/18_support/launder/nodiscard.cc: New test.

From-SVN: r255127

libstdc++-v3/ChangeLog
libstdc++-v3/libsupc++/new
libstdc++-v3/testsuite/18_support/launder/nodiscard.cc [new file with mode: 0644]

index 3b2dad0..d098ccc 100644 (file)
@@ -1,5 +1,8 @@
 2017-11-23  Jonathan Wakely  <jwakely@redhat.com>
 
+       * libsupc++/new (launder): Add nodiscard attribute.
+       * testsuite/18_support/launder/nodiscard.cc: New test.
+
        * include/bits/fs_path.h (path::empty): Add nodiscard attribute.
        * include/bits/range_access.h (empty): Likewise.
        * include/std/string_view (basic_string_view::empty): Likewise.
index 795b33c..0e408b1 100644 (file)
@@ -176,7 +176,7 @@ inline void operator delete[](void*, void*) _GLIBCXX_USE_NOEXCEPT { }
 //@}
 } // extern "C++"
 
-#if __cplusplus > 201402L
+#if __cplusplus >= 201703L
 #if __GNUC__ >= 7
 #  define _GLIBCXX_HAVE_BUILTIN_LAUNDER 1
 #elif defined __has_builtin
@@ -192,7 +192,7 @@ namespace std
 #define __cpp_lib_launder 201606
   /// Pointer optimization barrier [ptr.launder]
   template<typename _Tp>
-    constexpr _Tp*
+    [[nodiscard]] constexpr _Tp*
     launder(_Tp* __p) noexcept
     { return __builtin_launder(__p); }
 
diff --git a/libstdc++-v3/testsuite/18_support/launder/nodiscard.cc b/libstdc++-v3/testsuite/18_support/launder/nodiscard.cc
new file mode 100644 (file)
index 0000000..1741465
--- /dev/null
@@ -0,0 +1,29 @@
+// Copyright (C) 2017 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
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-options "-std=gnu++17" }
+// { dg-do compile { target c++17 } }
+
+#include <new>
+
+struct A { const int i; };
+
+void
+test01(A* a)
+{
+  std::launder(a); // { dg-warning "ignoring return value" }
+}