mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-07 16:48:40 +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
|
@ -91,8 +91,8 @@ class ModStorageDatabase : public Database
|
|||
public:
|
||||
virtual ~ModStorageDatabase() = default;
|
||||
|
||||
virtual bool getModEntries(const std::string &modname, StringMap *storage) = 0;
|
||||
virtual bool getModKeys(const std::string &modname, std::vector<std::string> *storage) = 0;
|
||||
virtual void getModEntries(const std::string &modname, StringMap *storage) = 0;
|
||||
virtual void getModKeys(const std::string &modname, std::vector<std::string> *storage) = 0;
|
||||
virtual bool hasModEntry(const std::string &modname, const std::string &key) = 0;
|
||||
virtual bool getModEntry(const std::string &modname,
|
||||
const std::string &key, std::string *value) = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue