diff options
Diffstat (limited to 'sql/sp_pcontext.h')
-rw-r--r-- | sql/sp_pcontext.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sql/sp_pcontext.h b/sql/sp_pcontext.h index dbce191975a..749b99dcf14 100644 --- a/sql/sp_pcontext.h +++ b/sql/sp_pcontext.h @@ -236,12 +236,6 @@ class sp_pcontext : public Sql_alloc // inline void - add_handler() - { - m_handlers+= 1; - } - - inline void push_handler(sp_cond_type_t *cond) { insert_dynamic(&m_handler, (gptr)&cond); @@ -257,7 +251,7 @@ class sp_pcontext : public Sql_alloc } inline void - push_handlers(uint n) + add_handlers(uint n) { m_handlers+= n; } |