diff options
| author | 2026-04-04 11:54:40 +0100 | |
|---|---|---|
| committer | 2026-04-04 11:54:40 +0100 | |
| commit | 4f217001cd68b505b9d4820bf48e72463580c5ad (patch) | |
| tree | 5c40d62487c614523fabe38bc30e49a4535d9c00 /src/modules.cpp | |
| parent | Stop using a second extensible for no-tls-cert. (diff) | |
Rename utility/map to container and prefix the difference method.
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 57f8df8ce..d86768f8d 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -32,7 +32,7 @@ #include "inspircd.h" #include "dynamic.h" -#include "utility/map.h" +#include "utility/container.h" Module::Module(int mprops, const std::string& mdesc) : Module(mprops, "", mdesc) @@ -61,7 +61,7 @@ void Module::CompareLinkData(const LinkData& otherdata, LinkDataDiff& diffs) { LinkData data; this->GetLinkData(data); - insp::map::difference(data, otherdata, diffs); + insp::map_difference(data, otherdata, diffs); } std::string Module::GetPropertyString() const |
