summaryrefslogtreecommitdiff
path: root/include/vm_websocket.hpp
diff options
context:
space:
mode:
authorEd Tanous <ed.tanous@intel.com>2019-10-25 01:57:51 +0300
committerJames Feist <james.feist@linux.intel.com>2019-11-11 23:26:11 +0300
commit0c0084aa1886fa6ad1fce2cec0a66e8ff879d9d4 (patch)
tree5ea755482d58596ce19fe513cfc94d6d85a196cb /include/vm_websocket.hpp
parent403e0ea38871f33570d3bff77f69832e77e3b692 (diff)
downloadbmcweb-0c0084aa1886fa6ad1fce2cec0a66e8ff879d9d4.tar.xz
Move default destructors to = default syntax
Modern c++ prefers setting default destructors to =default Tested: clang-tidy modernize-use-equals-default now passes Signed-off-by: Ed Tanous <ed.tanous@intel.com> Change-Id: I9ca746473263abfe2330b7c3e2fe645cf96112f3 Signed-off-by: James Feist <james.feist@linux.intel.com>
Diffstat (limited to 'include/vm_websocket.hpp')
-rw-r--r--include/vm_websocket.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/vm_websocket.hpp b/include/vm_websocket.hpp
index 7b07458f67..92ccc0ddd9 100644
--- a/include/vm_websocket.hpp
+++ b/include/vm_websocket.hpp
@@ -30,9 +30,7 @@ class Handler : public std::enable_shared_from_this<Handler>
{
}
- ~Handler()
- {
- }
+ ~Handler() = default;
void doClose()
{