]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/random_shuffle/requirements/explicit_instantiation/2.cc
libstdc++: Add attribute to features deprecated in C++17 [PR91260]
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / random_shuffle / requirements / explicit_instantiation / 2.cc
CommitLineData
de196e5d 1// { dg-options "-Wno-deprecated-declarations" }
4f99f3d0 2// { dg-do compile }
7f2f4b87 3// { dg-add-options using-deprecated }
4f99f3d0
BK
4
5// 2007-09-20 Benjamin Kosnik <bkoz@redhat.com>
6
7adcbafe 7// Copyright (C) 2007-2022 Free Software Foundation, Inc.
5837d3c8
JW
8//
9// This file is part of the GNU ISO C++ Library. This library is free
10// software; you can redistribute it and/or modify it under the
11// terms of the GNU General Public License as published by the
748086b7 12// Free Software Foundation; either version 3, or (at your option)
5837d3c8
JW
13// any later version.
14
15// This library is distributed in the hope that it will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19
20// You should have received a copy of the GNU General Public License along
748086b7
JJ
21// with this library; see the file COPYING3. If not see
22// <http://www.gnu.org/licenses/>.
23
5837d3c8 24
4f99f3d0 25#include <algorithm>
6116ca65 26#include <functional>
4f99f3d0 27#include <testsuite_api.h>
5837d3c8 28
4f99f3d0 29namespace std
5837d3c8 30{
4f99f3d0 31 using __gnu_test::NonDefaultConstructible;
5837d3c8 32
4f99f3d0
BK
33 typedef NonDefaultConstructible value_type;
34 typedef value_type* iterator_type;
35 typedef std::pointer_to_unary_function<int, int> generator_type;
5837d3c8 36
4f99f3d0 37 template void random_shuffle(iterator_type, iterator_type);
9bd87e38 38 template void random_shuffle(iterator_type, iterator_type,
4f99f3d0 39 generator_type&);
9bd87e38 40}