diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2020-07-31 19:58:03 +0100 |
---|---|---|
committer | Giuliano Belinassi <giuliano.belinassi@usp.br> | 2020-08-17 13:20:29 -0300 |
commit | 2fdc97f1e0f658936032af14718ddbbe7979e39b (patch) | |
tree | 86696681dd17d45321703dca4119d4c88cc21c66 | |
parent | e7457aae14f6a501f142171f7becd8619bb1a218 (diff) | |
download | gcc-2fdc97f1e0f658936032af14718ddbbe7979e39b.zip gcc-2fdc97f1e0f658936032af14718ddbbe7979e39b.tar.gz gcc-2fdc97f1e0f658936032af14718ddbbe7979e39b.tar.bz2 |
libstdc++: Fix test that fails for C++98
Local classes have no linkage so cannot be used as template arguments in
C++98.
libstdc++-v3/ChangeLog:
* testsuite/20_util/specialized_algorithms/uninitialized_fill_n/sizes.cc:
Move struct to namespace scope.
-rw-r--r-- | libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/sizes.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/sizes.cc b/libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/sizes.cc index eb957e1..f6e7a83 100644 --- a/libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/sizes.cc +++ b/libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/sizes.cc @@ -31,19 +31,19 @@ test01() VERIFY( i[3] == 0 ); } -void -test02() +// The standard only requires that n>0 and --n are valid expressions. +struct Size { - // The standard only requires that n>0 and --n are valid expressions. - struct Size - { - int value; + int value; - void operator--() { --value; } + void operator--() { --value; } - int operator>(void*) { return value != 0; } - }; + int operator>(void*) { return value != 0; } +}; +void +test02() +{ int i[5] = { }; Size n = {4}; std::uninitialized_fill_n(i, n, 0xdcba); |