diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2024-07-08 11:11:58 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2024-07-08 11:12:01 +0200 |
commit | 3333bae9b2a6c1ee2314d33361c93944c12001f9 (patch) | |
tree | 8c4e936cacd9df2c1290210a4642e5a587034400 /src/httpserver.h | |
parent | bd5d1688b4311e21c0e0ff89a3ae02ef7d0543b8 (diff) |
tidy: modernize-use-equals-default
Diffstat (limited to 'src/httpserver.h')
-rw-r--r-- | src/httpserver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httpserver.h b/src/httpserver.h index 991081bab8..39a0a83177 100644 --- a/src/httpserver.h +++ b/src/httpserver.h @@ -156,7 +156,7 @@ class HTTPClosure { public: virtual void operator()() = 0; - virtual ~HTTPClosure() {} + virtual ~HTTPClosure() = default; }; /** Event class. This can be used either as a cross-thread trigger or as a timer. |