aboutsummaryrefslogtreecommitdiff
path: root/src/database/database-postgresql.h
diff options
context:
space:
mode:
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,