Skip to content

Commit

Permalink
Fix warning about an unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Sep 8, 2024
1 parent 0ae576b commit f22b303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k4ProjectTemplate/src/components/HelloWorldAlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ StatusCode HelloWorldAlg::initialize() {
return StatusCode::SUCCESS;
}

StatusCode HelloWorldAlg::execute(const EventContext& ctx) const {
StatusCode HelloWorldAlg::execute(const EventContext&) const {
info() << endmsg;
info() << endmsg;
info() << theMessage << endmsg;
Expand Down

0 comments on commit f22b303

Please sign in to comment.