diff options
Diffstat (limited to 'cpp/src/qpid/framing/AMQMethodBody.h')
| -rw-r--r-- | cpp/src/qpid/framing/AMQMethodBody.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/framing/AMQMethodBody.h b/cpp/src/qpid/framing/AMQMethodBody.h index 9c776e143b..5acb3a7b66 100644 --- a/cpp/src/qpid/framing/AMQMethodBody.h +++ b/cpp/src/qpid/framing/AMQMethodBody.h @@ -50,8 +50,8 @@ class AMQMethodBody : public AMQBody { virtual MethodId amqpMethodId() const = 0; virtual ClassId amqpClassId() const = 0; - virtual void invoke(AMQP_ServerOperations&) { assert(0); } - virtual bool invoke(Invocable*) { return false; } + void invoke(AMQP_ServerOperations&); + bool invoke(Invocable*); template <class T> bool isA() const { return amqpClassId()==T::CLASS_ID && amqpMethodId()==T::METHOD_ID; |
