aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-family/c-ada-spec.h
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2015-07-07 20:13:59 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2015-07-07 20:13:59 +0000
commit2a7fb83f490c86f530efe5a83f720c95e03f883d (patch)
treea9350a7d3fdc4335c536908bc3023cf10f4dc6ca /gcc/c-family/c-ada-spec.h
parentfe21b3c292c3d93f6102c739ab32c9aeebffc0dd (diff)
downloadgcc-2a7fb83f490c86f530efe5a83f720c95e03f883d.zip
gcc-2a7fb83f490c86f530efe5a83f720c95e03f883d.tar.gz
gcc-2a7fb83f490c86f530efe5a83f720c95e03f883d.tar.bz2
c-ada-spec.h (cpp_operation): Add IS_MOVE_CONSTRUCTOR.
c-family/ * c-ada-spec.h (cpp_operation): Add IS_MOVE_CONSTRUCTOR. * c-ada-spec.c (print_ada_declaration): Skip move constructors. cp/ * decl2.c (cpp_check): Deal with IS_MOVE_CONSTRUCTOR. From-SVN: r225525
Diffstat (limited to 'gcc/c-family/c-ada-spec.h')
-rw-r--r--gcc/c-family/c-ada-spec.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/c-family/c-ada-spec.h b/gcc/c-family/c-ada-spec.h
index e922968..08d2685 100644
--- a/gcc/c-family/c-ada-spec.h
+++ b/gcc/c-family/c-ada-spec.h
@@ -30,6 +30,7 @@ typedef enum {
IS_CONSTRUCTOR,
IS_DESTRUCTOR,
IS_COPY_CONSTRUCTOR,
+ IS_MOVE_CONSTRUCTOR,
IS_TEMPLATE,
IS_TRIVIAL
} cpp_operation;