Skip to content

Commit 3773062

Browse files
authored
Fix linter
1 parent c1192b7 commit 3773062

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Configuration.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void ConfigFile::load(const std::string path)
7474
if (boost::algorithm::ends_with(filename, suffix)) {
7575
try {
7676
boost::property_tree::ini_parser::read_ini(filename, dPtr->pt);
77-
} catch (boost::property_tree::ini_parser::ini_parser_error const &perr) {
77+
} catch (boost::property_tree::ini_parser::ini_parser_error const& perr) {
7878
std::stringstream ss;
7979
if (perr.line()) {
8080
ss << perr.message() << " in " << perr.filename() << " line " << perr.line();

0 commit comments

Comments
 (0)