1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 21:06:38 +02:00

Fix missing override keywords.

This commit is contained in:
Sadie Powell
2023-03-06 16:11:54 +00:00
parent d210cd2695
commit 29db25dac7
40 changed files with 66 additions and 66 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ class Data : public Serialize::Data
public:
std::map<Anope::string, std::stringstream *> data;
~Data()
~Data() override
{
for (std::map<Anope::string, std::stringstream *>::iterator it = data.begin(), it_end = data.end(); it != it_end; ++it)
delete it->second;