From 70227dc8823c0f9669e35dbf63593faaeef5410d Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sun, 24 Nov 2024 22:36:53 +0000 Subject: Take a constant pointer in GetModule. --- include/config.h | 2 +- src/config.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/config.h b/include/config.h index 0a0a3103d..c0faf79ee 100644 --- a/include/config.h +++ b/include/config.h @@ -126,7 +126,7 @@ namespace Configuration void LoadConf(File &file); void Post(Conf *old); - Block *GetModule(Module *); + Block *GetModule(const Module *); Block *GetModule(const Anope::string &name); BotInfo *GetClient(const Anope::string &name); diff --git a/src/config.cpp b/src/config.cpp index 890cf57fe..69d36348d 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -620,7 +620,7 @@ void Conf::Post(Conf *old) } } -Block *Conf::GetModule(Module *m) +Block *Conf::GetModule(const Module *m) { if (!m) return NULL; -- cgit