diff options
author | DJ Delorie <dj@redhat.com> | 2013-04-03 18:21:40 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2013-04-03 18:21:40 +0000 |
commit | 84681ea68987b5e51f82fca7b7caf7e8eb315493 (patch) | |
tree | 6fe140371dc692ef18719fc7138b0a64e2105553 /include/demangle.h | |
parent | 8c1d3f336b68baa65214b64ab24270679fdc1d32 (diff) | |
download | newlib-84681ea68987b5e51f82fca7b7caf7e8eb315493.zip newlib-84681ea68987b5e51f82fca7b7caf7e8eb315493.tar.gz newlib-84681ea68987b5e51f82fca7b7caf7e8eb315493.tar.bz2 |
merge from gcc
Diffstat (limited to 'include/demangle.h')
-rw-r--r-- | include/demangle.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/demangle.h b/include/demangle.h index ed01950..58bf547 100644 --- a/include/demangle.h +++ b/include/demangle.h @@ -302,6 +302,12 @@ enum demangle_component_type /* The const qualifier modifying a member function. The one subtree is the type which is being qualified. */ DEMANGLE_COMPONENT_CONST_THIS, + /* C++11 A reference modifying a member function. The one subtree is the + type which is being referenced. */ + DEMANGLE_COMPONENT_REFERENCE_THIS, + /* C++11: An rvalue reference modifying a member function. The one + subtree is the type which is being referenced. */ + DEMANGLE_COMPONENT_RVALUE_REFERENCE_THIS, /* A vendor qualifier. The left subtree is the type which is being qualified, and the right subtree is the name of the qualifier. */ |