diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/demangle.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/demangle.h b/include/demangle.h index f4c41218e7f..1d7cadf4b71 100644 --- a/include/demangle.h +++ b/include/demangle.h @@ -379,6 +379,10 @@ enum demangle_component_type /* A typecast, represented as a unary operator. The one subtree is the type to which the argument should be cast. */ DEMANGLE_COMPONENT_CAST, + /* A conversion operator, represented as a unary operator. The one + subtree is the type to which the argument should be converted + to. */ + DEMANGLE_COMPONENT_CONVERSION, /* A nullary expression. The left subtree is the operator. */ DEMANGLE_COMPONENT_NULLARY, /* A unary expression. The left subtree is the operator, and the |