Skip to content
Snippets Groups Projects
Commit 827b6618 authored by Andre Sailer's avatar Andre Sailer
Browse files

DDigi: fix error: 'operator()' marked 'override' but does not override any member functions

parent 8ea8e39b
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ namespace dd4hep {
/// Default destructor
virtual ~DigiAttenuator();
/// Callback to read event attenuator
virtual double operator()(const DigiCellData& data) const override {
virtual double operator()(const DigiCellData& data) const {
return processor(data);
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment