From 2ec65e229314d468006998eaef7074b86ef7482d Mon Sep 17 00:00:00 2001 From: Saar Raz Date: Fri, 24 Jan 2020 00:43:22 +0200 Subject: [Concepts] Deprecate -fconcepts-ts, enable Concepts under -std=c++2a Now with concepts support merged and mostly complete, we do not need -fconcepts-ts (which was also misleading as we were not implementing the TS) and can enable concepts features under C++2a. A warning will be generated if users still attempt to use -fconcepts-ts. (cherry picked from commit 67c608a9695496cfc9d3fdf9d0b12b554ac6b4df) --- .../test/CXX/temp/temp.constr/temp.constr.order/function-templates.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clang/test/CXX/temp/temp.constr/temp.constr.order/function-templates.cpp') diff --git a/clang/test/CXX/temp/temp.constr/temp.constr.order/function-templates.cpp b/clang/test/CXX/temp/temp.constr/temp.constr.order/function-templates.cpp index 7f68369d528..8ae63087144 100644 --- a/clang/test/CXX/temp/temp.constr/temp.constr.order/function-templates.cpp +++ b/clang/test/CXX/temp/temp.constr/temp.constr.order/function-templates.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -std=c++2a -fconcepts-ts -x c++ -verify %s +// RUN: %clang_cc1 -std=c++2a -x c++ -verify %s template requires (sizeof(T) >= 4) // expected-note@-1{{similar constraint expressions not considered equivalent}} -- cgit v1.2.3