mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
Remove unnecessary bool return types
This commit is contained in:
parent
7c21347a40
commit
8b26bab37d
9 changed files with 20 additions and 34 deletions
|
@ -239,8 +239,8 @@ public:
|
|||
ModStorageDatabaseSQLite3(const std::string &savedir);
|
||||
virtual ~ModStorageDatabaseSQLite3();
|
||||
|
||||
virtual bool getModEntries(const std::string &modname, StringMap *storage);
|
||||
virtual bool getModKeys(const std::string &modname, std::vector<std::string> *storage);
|
||||
virtual void getModEntries(const std::string &modname, StringMap *storage);
|
||||
virtual void getModKeys(const std::string &modname, std::vector<std::string> *storage);
|
||||
virtual bool getModEntry(const std::string &modname,
|
||||
const std::string &key, std::string *value);
|
||||
virtual bool hasModEntry(const std::string &modname, const std::string &key);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue