Merge pull request #469 from itrofimow/master

This commit is contained in:
Emiel Bruijntjes 2022-07-25 17:12:46 +02:00 committed by GitHub
commit db6f2f23dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -150,6 +150,9 @@ public:
*/
virtual bool process(ConnectionImpl *connection) override
{
// make sure compilers dont complain about unused parameters
(void) connection;
// this is an exception
throw ProtocolException("unimplemented frame type " + std::to_string(type()));

View File

@ -95,6 +95,9 @@ public:
*/
virtual bool process(ConnectionImpl *connection) override
{
// make sure compilers dont complain about unused parameters
(void) connection;
// this is an exception
throw ProtocolException("unimplemented frame type " + std::to_string(type()) + " class " + std::to_string(classID()) + " method " + std::to_string(methodID()));
}