aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2007-08-31 20:20:49 +0000
committerDJ Delorie <dj@redhat.com>2007-08-31 20:20:49 +0000
commit8969a67f0a5f5becee46b72a74f2b4d6b9cfd937 (patch)
tree99e6490842016fd47943acc344a7732c07b268ed /include
parent202ddcaa09cec13dd964695fb033a6cd6c7a6543 (diff)
downloadfsf-binutils-gdb-8969a67f0a5f5becee46b72a74f2b4d6b9cfd937.zip
fsf-binutils-gdb-8969a67f0a5f5becee46b72a74f2b4d6b9cfd937.tar.gz
fsf-binutils-gdb-8969a67f0a5f5becee46b72a74f2b4d6b9cfd937.tar.bz2
merge from gcc
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog5
-rw-r--r--include/demangle.h3
2 files changed, 8 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 188c094..3c6743b 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-31 Douglas Gregor <doug.gregor@gmail.com>
+
+ * demangle.h (enum demangle_component_type): Add
+ DEMANGLE_COMPONENT_RVALUE_REFERENCE.
+
2007-07-25 Ben Elliston <bje@au.ibm.com>
* ternary.h: Remove.
diff --git a/include/demangle.h b/include/demangle.h
index 49f23e5..b55226d 100644
--- a/include/demangle.h
+++ b/include/demangle.h
@@ -296,6 +296,9 @@ enum demangle_component_type
/* A reference. The one subtree is the type which is being
referenced. */
DEMANGLE_COMPONENT_REFERENCE,
+ /* C++0x: An rvalue reference. The one subtree is the type which is
+ being referenced. */
+ DEMANGLE_COMPONENT_RVALUE_REFERENCE,
/* A complex type. The one subtree is the base type. */
DEMANGLE_COMPONENT_COMPLEX,
/* An imaginary type. The one subtree is the base type. */