diff options
Diffstat (limited to 'gdb/c-exp.y')
-rw-r--r-- | gdb/c-exp.y | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y index 1af76c9..2577a99 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -1236,6 +1236,14 @@ name_not_typename : NAME context where only a name could occur, this might be useful. | NAME_OR_INT */ + | operator + { + $$.stoken = $1; + $$.sym = lookup_symbol ($1.ptr, + expression_context_block, + VAR_DOMAIN, + &$$.is_a_field_of_this); + } ; %% |