Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
singiamtel authored Dec 3, 2024
1 parent c1192b7 commit 3773062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Configuration.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ void ConfigFile::load(const std::string path)
if (boost::algorithm::ends_with(filename, suffix)) {
try {
boost::property_tree::ini_parser::read_ini(filename, dPtr->pt);
} catch (boost::property_tree::ini_parser::ini_parser_error const &perr) {
} catch (boost::property_tree::ini_parser::ini_parser_error const& perr) {
std::stringstream ss;
if (perr.line()) {
ss << perr.message() << " in " << perr.filename() << " line " << perr.line();
Expand Down

0 comments on commit 3773062

Please sign in to comment.