From: Jonathan Wakely Date: Tue, 16 May 2017 14:26:14 +0000 (+0100) Subject: Test source_location::current() in default member initializer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=058c785479b1652ffd47d397a9693fe5e5fdea39;p=gcc.git Test source_location::current() in default member initializer * testsuite/experimental/source_location/1.cc: Change expected result for source_location::current() used in default member initializer. From-SVN: r248111 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 5cc498b6cb7..c32dc62abca 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,6 +1,8 @@ 2017-05-16 Jonathan Wakely - * configure: Regenerate. + * testsuite/experimental/source_location/1.cc: Change expected result + for source_location::current() used in default member initializer. + * doc/xml/manual/status_cxx2017.xml: Update status table. * doc/html/*: Regenerate. * include/Makefile.am: Add new header. diff --git a/libstdc++-v3/testsuite/experimental/source_location/1.cc b/libstdc++-v3/testsuite/experimental/source_location/1.cc index 2634ab465a1..febd84e2b65 100644 --- a/libstdc++-v3/testsuite/experimental/source_location/1.cc +++ b/libstdc++-v3/testsuite/experimental/source_location/1.cc @@ -56,9 +56,9 @@ void test02() VERIFY( s0.loc.function_name() == string_view(__FUNCTION__) ); S s1(1); - VERIFY( s1.loc.line() != 58 ); + VERIFY( s1.loc.line() == 46 ); VERIFY( s1.loc.file_name() == __FILE__ ); - // VERIFY( s1.loc.function_name() == s1.func ); + VERIFY( s1.loc.function_name() == s1.func ); } source_location f(source_location a = source_location::current()) {