From: Jonathan Wakely Date: Fri, 31 Jul 2020 18:58:03 +0000 (+0100) Subject: libstdc++: Fix test that fails for C++98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fdc97f1e0f658936032af14718ddbbe7979e39b;p=thirdparty%2Fgcc.git 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. --- 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 eb957e148da4..f6e7a83c58d4 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);