summaryrefslogtreecommitdiff
path: root/modules/m_dns.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2022-01-03 18:52:15 +0000
committerSadie Powell <sadie@witchery.services>2022-01-04 00:17:19 +0000
commita31a7f5a6ce3f47716a9313d232c2a40955fd1e1 (patch)
tree8061f572670ccda9030955b67cdefba7df4facce /modules/m_dns.cpp
parent7531e90499d4cd60b6464c692725225e85c00738 (diff)
Use C++11 default initializers and destructors where possible.
Diffstat (limited to 'modules/m_dns.cpp')
-rw-r--r--modules/m_dns.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/m_dns.cpp b/modules/m_dns.cpp
index 50c4c60a0..8b39b75b8 100644
--- a/modules/m_dns.cpp
+++ b/modules/m_dns.cpp
@@ -453,7 +453,7 @@ namespace DNS
class ReplySocket : public virtual Socket
{
public:
- virtual ~ReplySocket() { }
+ virtual ~ReplySocket() = default;
virtual void Reply(Packet *p) = 0;
};
}