Skip to content

Commit

Permalink
Address GCC CI warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
victorreijgwart committed Dec 5, 2024
1 parent 43d1a50 commit f3846f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/cpp/src/io/config/stream_conversions.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
#endif

namespace wavemap::io {
std::optional<param::Value> yamlStreamToParams(std::istream& istream) {
std::optional<param::Value> yamlStreamToParams(
[[maybe_unused]] std::istream& istream) {
#ifdef YAML_CPP_AVAILABLE
try {
YAML::Node yaml = YAML::Load(istream);
Expand Down

0 comments on commit f3846f9

Please sign in to comment.