Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ini/ini.h
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ inline T INIReader::Get(const std::string& section, const std::string& name,
T&& default_v) const {
try {
return Get<T>(section, name);
} catch (std::runtime_error& e) {
} catch (std::runtime_error&) {
return default_v;
}
}
Expand Down Expand Up @@ -456,7 +456,7 @@ inline std::vector<T> INIReader::GetVector(
const std::vector<T>& default_v) const {
try {
return GetVector<T>(section, name);
} catch (std::runtime_error& e) {
} catch (std::runtime_error&) {
return default_v;
};
}
Expand Down
Loading