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 10, 2024
1 parent 8e3e498 commit 6f98928
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 6f98928

Please sign in to comment.