From f2f84dd97a2b9e00b103e53303fdab0ba4e76c1c Mon Sep 17 00:00:00 2001 From: kannibalox Date: Mon, 11 Nov 2024 10:46:24 -0500 Subject: [PATCH] Remove destructor definition entirely --- src/rpc/command_map.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/rpc/command_map.h b/src/rpc/command_map.h index 555e8e89..561ab01a 100644 --- a/src/rpc/command_map.h +++ b/src/rpc/command_map.h @@ -97,7 +97,6 @@ public: static const int flag_tracker_target = 0x400; CommandMap() {} - ~CommandMap() {} bool has(const std::string& key) const { return base_type::find(key) != base_type::end(); }