Skip to content

Commit

Permalink
fix unused variable in autogenerated binary data cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
MeijisIrlnd committed Sep 28, 2024
1 parent f5d6cd9 commit 00646fa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
[submodule "modules/choc"]
path = modules/choc
url = https://github.com/SLM-Audio/choc.git
[submodule "modules/clap-helpers"]
path = modules/clap-helpers
url = https://github.com/free-audio/clap-helpers.git
2 changes: 1 addition & 1 deletion cmake/mostlyharmless_BinaryData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace mostly_harmless::@ARG_TARGET_NAME@ {
const auto size = data.end() - data.begin();
BinaryResource res{ .data = data.begin(), .size = static_cast<size_t>(size) };
return res;
} catch(std::system_error& e) {
} catch(std::system_error& /*e*/) {
return {};
}
}
Expand Down
1 change: 1 addition & 0 deletions modules/clap-helpers
Submodule clap-helpers added at b895ea

0 comments on commit 00646fa

Please sign in to comment.