aboutsummaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-31 12:22:00 +0000
committerGravatar Sadie Powell2022-01-31 12:24:12 +0000
commitd247b77a1ead9f55df938d6abaecdaff2c68c9c8 (patch)
treeba5079626f474074f7286e3652e3c9fc8b756a07 /src/modules.cpp
parentRemove the nationalchars module. (diff)
Move stdalgo::map::difference to its own utility header.
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 5cff6ac29..37cf9954b 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -35,6 +35,7 @@
#include "inspircd.h"
#include "exitcodes.h"
+#include "utility/map.h"
// Needs to be included after inspircd.h to avoid reincluding winsock.
#include <rang/rang.hpp>
@@ -68,7 +69,7 @@ void Module::CompareLinkData(const LinkData& otherdata, LinkDataDiff& diffs)
std::string unused;
LinkData data;
this->GetLinkData(data, unused);
- stdalgo::map::difference(data, otherdata, diffs);
+ insp::map::difference(data, otherdata, diffs);
}
std::string Module::GetPropertyString() const