From 57349eb84563c2394b917d12b65b0b94e809f3ec Mon Sep 17 00:00:00 2001 From: David Rohr Date: Fri, 29 Aug 2025 11:02:57 +0200 Subject: [PATCH] Fix codechecker error --- Detectors/TOF/workflow/src/make-parameter-collection.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Detectors/TOF/workflow/src/make-parameter-collection.cxx b/Detectors/TOF/workflow/src/make-parameter-collection.cxx index 3a210df3fcad8..c90f417639212 100644 --- a/Detectors/TOF/workflow/src/make-parameter-collection.cxx +++ b/Detectors/TOF/workflow/src/make-parameter-collection.cxx @@ -63,7 +63,7 @@ class ParamExample : public Parameters<5> public: ParamExample() : Parameters(std::array{"p0", "p1", "p2", "p3", "p4"}, "ParamExample") { setParameters(std::array{0, 1, 2, 3, 4}); }; // Default constructor with default parameters - ~ParamExample() = default; + ~ParamExample() override = default; }; int main(int argc, char* argv[])