From c36e7b57344adb403d9b7abccccd8e7a95a27286 Mon Sep 17 00:00:00 2001 From: Marco Meyer-Conde <37673095+xkzl@users.noreply.github.com> Date: Wed, 24 Jul 2024 16:00:45 +0900 Subject: [PATCH] Update INIReader.cpp Update INIReader::INIReader prototype implementation to match header implementation. --- cpp/INIReader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/INIReader.cpp b/cpp/INIReader.cpp index ebe458b..69acc2a 100644 --- a/cpp/INIReader.cpp +++ b/cpp/INIReader.cpp @@ -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); }