diff options
author | Sadie Powell <sadie@witchery.services> | 2024-02-26 15:27:01 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-02-26 15:34:17 +0000 |
commit | c6cb4ba159a8916243d7ac5a5c4e8d13942baf99 (patch) | |
tree | 5183b6cb982dadb2b91987ff7b69486ea8d811df /modules/database/db_flatfile.cpp | |
parent | e341cac8d6565044f7390852afb40c5e388121df (diff) |
Fix some coding style issues.
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) { |