aboutsummaryrefslogtreecommitdiff
path: root/src/database/database-postgresql.h
diff options
context:
space:
mode:
authorJude Melton-Houghton <jwmhjwmh@gmail.com>2022-11-23 17:46:20 -0500
committerJude Melton-Houghton <jwmhjwmh@gmail.com>2022-11-24 17:58:25 -0500
commit8b26bab37d4cd1cbe63f665ea26edfbb5d5a72e5 (patch)
tree3bb45b08d029b92ba365569be088bceb09716924 /src/database/database-postgresql.h
parent7c21347a40ede4427d9a9ba69c768ffb9c41d264 (diff)
downloadminetest-8b26bab37d4cd1cbe63f665ea26edfbb5d5a72e5.tar.xz
Remove unnecessary bool return types
Diffstat (limited to 'src/database/database-postgresql.h')
-rw-r--r--src/database/database-postgresql.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/database/database-postgresql.h b/src/database/database-postgresql.h
index a587f3d9e..56b3d6b53 100644
--- a/src/database/database-postgresql.h
+++ b/src/database/database-postgresql.h
@@ -181,8 +181,8 @@ public:
ModStorageDatabasePostgreSQL(const std::string &connect_string);
~ModStorageDatabasePostgreSQL() = default;
- bool getModEntries(const std::string &modname, StringMap *storage);
- bool getModKeys(const std::string &modname, std::vector<std::string> *storage);
+ void getModEntries(const std::string &modname, StringMap *storage);
+ void getModKeys(const std::string &modname, std::vector<std::string> *storage);
bool getModEntry(const std::string &modname, const std::string &key, std::string *value);
bool hasModEntry(const std::string &modname, const std::string &key);
bool setModEntry(const std::string &modname,