diff options
Diffstat (limited to 'gdb/c-exp.h')
-rw-r--r-- | gdb/c-exp.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/c-exp.h b/gdb/c-exp.h index 0ce2bd6..1a69b1c 100644 --- a/gdb/c-exp.h +++ b/gdb/c-exp.h @@ -74,8 +74,6 @@ public: struct expression *exp, enum noside noside) override { - if (noside == EVAL_SKIP) - return eval_skip_value (exp); const std::string &str = std::get<0> (m_storage); return value_nsstring (exp->gdbarch, str.c_str (), str.size () + 1); } @@ -95,8 +93,6 @@ public: struct expression *exp, enum noside noside) override { - if (noside == EVAL_SKIP) - return eval_skip_value (exp); return eval_op_objc_selector (expect_type, exp, noside, std::get<0> (m_storage).c_str ()); } |