From: DJ Delorie Date: Fri, 31 Aug 2007 20:20:44 +0000 (+0000) Subject: merge from gcc X-Git-Tag: gdb_6_7-2007-09-07-branchpoint~11 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=95500c2eff0773968c36922f68d877cf5e8833e4;p=newlib-cygwin.git merge from gcc --- diff --git a/include/ChangeLog b/include/ChangeLog index 188c0948c..3c6743b2c 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2007-08-31 Douglas Gregor + + * demangle.h (enum demangle_component_type): Add + DEMANGLE_COMPONENT_RVALUE_REFERENCE. + 2007-07-25 Ben Elliston * ternary.h: Remove. diff --git a/include/demangle.h b/include/demangle.h index 49f23e543..b55226d85 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. */