1
0
Fork 0
forked from lthn/blockchain

fixed a typo

This commit is contained in:
sowle 2020-03-30 15:22:16 +03:00
parent 8cdeadfdc8
commit 9cc1a0b800
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -907,7 +907,7 @@ using namespace std;
struct idle_handler_base
{
virtual bool do_call(const std::string& piece_of_data, uint64_t total_bytes, uint64_t received_bytes) = 0;
virtual idle_handler_base() {}
virtual ~idle_handler_base() {}
};
template <typename callback_t>