Merge pull request #486 from Garzet/master

Add ErrorHandler virtual destructor
This commit is contained in:
Leonid Stryzhevskyi 2021-09-27 17:01:48 +03:00 committed by GitHub
commit d9e8e0cb34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,6 +41,10 @@ public:
*/
typedef web::protocol::http::Headers Headers;
public:
/**
* Virtual destructor since the class is ment to be derived from.
* */
virtual ~ErrorHandler() = default;
/**
* Implement this method!