Skip to content

Commit

Permalink
Update INIReader.cpp
Browse files Browse the repository at this point in the history
Update INIReader::INIReader prototype implementation to match header implementation.
  • Loading branch information
meiyasan authored Jul 24, 2024
1 parent ed45251 commit c36e7b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/INIReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

using std::string;

INIReader::INIReader(const string& filename)
INIReader::INIReader(const std::string& filename)
{
_error = ini_parse(filename.c_str(), ValueHandler, this);
}
Expand Down

0 comments on commit c36e7b5

Please sign in to comment.