🐛 Fixed bug where this would not link correctly.

This commit is contained in:
Nichole Mattera 2020-02-07 13:12:02 -05:00 committed by GitHub
parent 96f8dd3814
commit 625d49fb53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ namespace simpleIniParser {
return fieldValue == term;
}
bool findSection(const IniSection * obj, std::string term, bool caseSensitive, IniSectionType type) {
bool IniHelper::findSection(const IniSection * obj, std::string term, bool caseSensitive, IniSectionType type) {
if (type != IniSectionType::Any && type != obj->type) {
return false;
}