Skip to content

Commit

Permalink
Avoid unreferenced variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
phw committed Nov 2, 2023
1 parent 0d94178 commit 92387c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/play.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ namespace lbz
try {
additional_info[name] = stoi(value);
}
catch (const std::invalid_argument& e) {
catch (const std::invalid_argument&) {
additional_info[name] = value;
}
}
Expand Down

0 comments on commit 92387c0

Please sign in to comment.