🐛 Fixed bug where this would not link correctly.

main
Nichole Mattera 3 years ago committed by GitHub
parent 0d06aa30fc
commit 5c341008bc
  1. 2
      source/SimpleIniParser/IniHelper.cpp

@ -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;
}

Loading…
Cancel
Save