mirror of
https://github.com/anope/anope.git
synced 2026-06-25 18:56:37 +02:00
Removed std::string and ci::string versions of LoadModuleList, we only need the Anope::string version now.
This commit is contained in:
@@ -13,18 +13,6 @@
|
||||
|
||||
std::vector<Module *> ModuleManager::EventHandlers[I_END];
|
||||
|
||||
void ModuleManager::LoadModuleList(std::list<std::string> &ModuleList)
|
||||
{
|
||||
for (std::list<std::string>::iterator it = ModuleList.begin(), it_end = ModuleList.end(); it != it_end; ++it)
|
||||
ModuleManager::LoadModule(*it, NULL);
|
||||
}
|
||||
|
||||
void ModuleManager::LoadModuleList(std::list<ci::string> &ModuleList)
|
||||
{
|
||||
for (std::list<ci::string>::iterator it = ModuleList.begin(), it_end = ModuleList.end(); it != it_end; ++it)
|
||||
ModuleManager::LoadModule(*it, NULL);
|
||||
}
|
||||
|
||||
void ModuleManager::LoadModuleList(std::list<Anope::string> &ModuleList)
|
||||
{
|
||||
for (std::list<Anope::string>::iterator it = ModuleList.begin(), it_end = ModuleList.end(); it != it_end; ++it)
|
||||
|
||||
Reference in New Issue
Block a user