diff options
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 2f7f1fd16..37a0e742e 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -318,7 +318,7 @@ int Server::CountUsers(chanrec* c) ConfigReader::ConfigReader() { - this->cache = new std::stringstream(stringstream::in | stringstream::out); + this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); this->error = LoadConf(CONFIG_FILE,this->cache); } @@ -332,7 +332,7 @@ ConfigReader::~ConfigReader() ConfigReader::ConfigReader(std::string filename) { - this->cache = new std::stringstream(stringstream::in | stringstream::out); + this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); this->error = LoadConf(filename.c_str(),this->cache); }; |