Mu2e / TrkAna

Track-based analysis TTree maker working in the art framework
Apache License 2.0
1 stars 19 forks source link

missing overrides #173

Open AndrewEdmonds11 opened 3 weeks ago

AndrewEdmonds11 commented 3 weeks ago

Clang-tidy reports errors like the below:

[TrkAna/src/TrkAnaTreeMaker_module.cc:188:12: ESC[0mESC[0;1;35mwarning: ESC[0mESC[1m'beginJob' overrides a member function but is not marked 'override' [clang-diagnostic-inconsistent-missing-override]
      void beginJob();

Basically we are missing override in the member function declarations for beginJob() and analyze().

This is a great first issue for anyone looking to get involved with development