Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Dec 9, 2024
1 parent 71b5447 commit 232ecf0
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,10 @@ struct ExampleGaudiFunctionalProducer final : Gaudi::Functional::Producer<int(),
// The pair in KeyValues can be changed from python and it corresponds
// to the name of the output collection
ExampleGaudiFunctionalProducer(const std::string& name, ISvcLocator* svcLoc)
: Producer(name, svcLoc, KeyValue{"OutputCollectionName", "OutputCollection"}) {}
: Producer(name, svcLoc, KeyValue{"OutputCollectionName", "OutputCollection"}) {}

// This is the function that will be called to produce the data
int operator()() const override {
return 3;
}
int operator()() const override { return 3; }
};

DECLARE_COMPONENT(ExampleGaudiFunctionalProducer)

0 comments on commit 232ecf0

Please sign in to comment.