diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-30 17:12:06 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-30 17:12:06 +0000 |
commit | c33e051d6e2d76ff5dd9e795e203a65bfb303b13 (patch) | |
tree | 8c362cff0a078a9a626be3899830a2360da10e04 /gcc/cp/cp-tree.def | |
parent | 9fec010f7f41978fac1dc96eaa9826a7c12f60dd (diff) | |
download | gcc-c33e051d6e2d76ff5dd9e795e203a65bfb303b13.tar.gz |
c-family/
* c-common.h (enum rid): Remove RID_IS_CONVERTIBLE_TO.
* c-common.c (c_common_reswords): Remove __is_convertible_to.
cp/
* cp-tree.h (cp_trait_kind): Remove CPTK_IS_CONVERTIBLE_TO.
* cxx-pretty-print.c (pp_cxx_trait_expression): Likewise.
* semantics.c (trait_expr_value): Likewise.
(finish_trait_expr): Likewise.
* parser.c (cp_parser_primary_expression): Likewise.
(cp_parser_trait_expr): Likewise. Remove redundant grokdeclarator.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215735 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/cp-tree.def')
-rw-r--r-- | gcc/cp/cp-tree.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/cp-tree.def b/gcc/cp/cp-tree.def index b4a72d6e30a..e6e90f76c02 100644 --- a/gcc/cp/cp-tree.def +++ b/gcc/cp/cp-tree.def @@ -354,9 +354,9 @@ DEFTREECODE (STMT_EXPR, "stmt_expr", tcc_expression, 1) is applied. */ DEFTREECODE (UNARY_PLUS_EXPR, "unary_plus_expr", tcc_unary, 1) -/** C++0x extensions. */ +/** C++11 extensions. */ -/* A static assertion. This is a C++0x extension. +/* A static assertion. This is a C++11 extension. STATIC_ASSERT_CONDITION contains the condition that is being checked. STATIC_ASSERT_MESSAGE contains the message (a string literal) to be displayed if the condition fails to hold. */ |