Database: Add missing const qualifier

This commit is contained in:
Lioncash 2020-04-05 09:21:58 -04:00
parent 393e824838
commit c48303c2c2
1 changed files with 1 additions and 1 deletions

View File

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