From: David Edelsohn Date: Tue, 30 Jun 2020 00:41:55 +0000 (-0400) Subject: testsuite: fix constexpr-is_literal.C deprecated c++17 and above. X-Git-Tag: upstream/12.2.0~15224 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d503e329911a9c7f6d4db3170f6ed6f5a0424ba;p=platform%2Fupstream%2Fgcc.git testsuite: fix constexpr-is_literal.C deprecated c++17 and above. std::is_literal_type is deprecated in C++17 and above. This was introduced in c++11, but the testsuite list of standards now only includes c++98 and c++14. This patch limits the test to c++14_only to prevent deprecation warnings. gcc/testsuite/ChangeLog 2020-06-30 David Edelsohn * g++.dg/cpp0x/constexpr-is_literal.C: Limit test to -std=c++14. --- diff --git a/gcc/testsuite/g++.dg/cpp0x/constexpr-is_literal.C b/gcc/testsuite/g++.dg/cpp0x/constexpr-is_literal.C index f255b8d..02d2ca3 100644 --- a/gcc/testsuite/g++.dg/cpp0x/constexpr-is_literal.C +++ b/gcc/testsuite/g++.dg/cpp0x/constexpr-is_literal.C @@ -1,4 +1,4 @@ -// { dg-do compile { target c++11 } } +// { dg-do compile { target c++14_only } } #include