Skip to content
Snippets Groups Projects
Commit 9968fa95 authored by Scott Snyder's avatar Scott Snyder Committed by Tadej Novak
Browse files

AFP_Calibration: Fix clang warnings.

AFP_Calibration: Fix clang warnings.

Classes with virtual functions should also have a virtual dtor.
parent 460e3b34
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,7 @@
class IAFP_GenericPixelTool{
public:
virtual ~IAFP_GenericPixelTool() = default;
virtual int Identify(std::shared_ptr<const TH2F> input, std::vector<TH2F>& output) const = 0;
};
......
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