Skip to content
Snippets Groups Projects
Commit eabc9885 authored by Shaun Roe's avatar Shaun Roe
Browse files

trial: clang warnings

parent 8b2174d7
No related branches found
No related tags found
1 merge request!425Solve clang warnings
Pipeline #11770240 canceled
/* /*
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
*/ */
/* /*
...@@ -36,11 +36,11 @@ class GeoRectSurface : public GeoVSurfaceShape ...@@ -36,11 +36,11 @@ class GeoRectSurface : public GeoVSurfaceShape
return m_yHalfLength; return m_yHalfLength;
} }
virtual const std::string & type () const{ virtual const std::string & type () const override final{
return s_classType; return s_classType;
} }
virtual ShapeType typeID () const{ virtual ShapeType typeID () const override final{
return s_classTypeID; return s_classTypeID;
} }
......
/* /*
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
*/ */
/* /*
...@@ -42,11 +42,11 @@ class GeoTrapezoidSurface : public GeoVSurfaceShape ...@@ -42,11 +42,11 @@ class GeoTrapezoidSurface : public GeoVSurfaceShape
return m_yHalfLength; return m_yHalfLength;
} }
virtual const std::string & type () const{ virtual const std::string & type () const override final{
return s_classType; return s_classType;
} }
virtual ShapeType typeID () const{ virtual ShapeType typeID () const override final{
return s_classTypeID; return s_classTypeID;
} }
......
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