#if _GLIBCXX_HOSTED
template<typename _RAIter>
+ _GLIBCXX14_DEPRECATED_SUGGEST("std::shuffle")
void
random_shuffle(_RAIter, _RAIter);
template<typename _RAIter, typename _Generator>
+ _GLIBCXX14_DEPRECATED_SUGGEST("std::shuffle")
void
random_shuffle(_RAIter, _RAIter,
#if __cplusplus >= 201103L
* equally likely.
*
* @deprecated
- * Since C++14 `std::random_shuffle` is not part of the C++ standard.
+ * Since C++17, `std::random_shuffle` is not part of the C++ standard.
* Use `std::shuffle` instead, which was introduced in C++11.
*/
template<typename _RandomAccessIterator>
* range `[0, N)`.
*
* @deprecated
- * Since C++14 `std::random_shuffle` is not part of the C++ standard.
+ * Since C++17, `std::random_shuffle` is not part of the C++ standard.
* Use `std::shuffle` instead, which was introduced in C++11.
*/
template<typename _RandomAccessIterator, typename _RandomNumberGenerator>
}
}
#endif // HOSTED
-#endif // C++11 || USE_DEPRECATED
+#endif // <= C++11 || USE_DEPRECATED
/**
* @brief Move elements for which a predicate is true to the beginning
// with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
+// { dg-options "-Wno-deprecated-declarations" }
// { dg-add-options using-deprecated }
// { dg-require-effective-target hosted }
// <http://www.gnu.org/licenses/>.
// { dg-do run { target c++11 } }
+// { dg-options "-Wno-deprecated-declarations" }
// { dg-add-options using-deprecated }
// { dg-require-debug-mode "" }
--- /dev/null
+// { dg-do compile }
+// { dg-add-options using-deprecated }
+// { dg-require-effective-target hosted }
+
+// std::random_shuffle was deprecated in C++17 and removed in C++17.
+
+#include <algorithm>
+
+std::ptrdiff_t rando(std::ptrdiff_t n);
+
+void
+test_depr(int* first, int* last)
+{
+ std::random_shuffle(first, last);
+ // { dg-warning "deprecated" "" { target c++14 } 14 }
+
+ std::random_shuffle(first, last, rando);
+ // { dg-warning "deprecated" "" { target c++14 } 17 }
+}
// { dg-do run { target c++11 } }
+// { dg-options "-Wno-deprecated-declarations" }
// { dg-add-options using-deprecated }
// { dg-require-effective-target hosted }