2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-04 10:55:35 +00:00

Database: Add missing const qualifier

This commit is contained in:
Lioncash 2020-04-05 09:21:58 -04:00
parent 393e824838
commit c48303c2c2

View File

@ -260,7 +260,7 @@ public:
std::vector<std::string>& lockAndRead();
void addLine(std::string_view line);
void removeLine(std::string_view refLine);
bool checkForLine(std::string_view refLine);
bool checkForLine(std::string_view refLine) const;
void unlockAndDiscard();
bool unlockAndCommit();
};