diff options
Diffstat (limited to 'modules/database/db_flatfile.cpp')
-rw-r--r-- | modules/database/db_flatfile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/database/db_flatfile.cpp b/modules/database/db_flatfile.cpp index 4137ab981..d2225ce88 100644 --- a/modules/database/db_flatfile.cpp +++ b/modules/database/db_flatfile.cpp @@ -22,7 +22,7 @@ public: Anope::string last; std::fstream *fs = nullptr; - std::iostream& operator[](const Anope::string &key) override + std::iostream &operator[](const Anope::string &key) override { if (key != last) { @@ -44,7 +44,7 @@ public: std::stringstream ss; bool read = false; - std::iostream& operator[](const Anope::string &key) override + std::iostream &operator[](const Anope::string &key) override { if (!read) { |