diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-04 19:12:55 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-04 19:12:55 +0000 |
commit | 7fe5347210730622badcb6ed32d90114bd8cbeb4 (patch) | |
tree | 495ff9cfcae28db0fe9fc1de26f9e784606d57df /src/configreader.cpp | |
parent | 8923de4c4ff8e48f15baf8ca5914f664012cbd8d (diff) |
Remove our vectors of Module*/ircd_module*, replace with a map of std::pair<ircd_module*, Module*>
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8513 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r-- | src/configreader.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index f1fedfe96..e7eb84ff8 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -668,10 +668,11 @@ bool InitModule(ServerConfig* conf, const char*) new_module_names.clear(); added_modules.clear(); removed_modules.clear(); - for (std::vector<std::string>::iterator t = conf->module_names.begin(); t != conf->module_names.end(); t++) + /** FIXME **/ + /*for (std::vector<std::string>::iterator t = conf->module_names.begin(); t != conf->module_names.end(); t++) { old_module_names.push_back(*t); - } + }*/ return true; } |