From 644d60723d7141adaba7d2a1039c79aa75e87766 Mon Sep 17 00:00:00 2001 From: Adam Kewley Date: Fri, 2 Aug 2024 10:10:52 +0200 Subject: [PATCH] Remove extra trailing semicolons found by gcc12 --- .../Documents/ModelWarper/ModelWarperConfiguration.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/OpenSimCreator/Documents/ModelWarper/ModelWarperConfiguration.h b/src/OpenSimCreator/Documents/ModelWarper/ModelWarperConfiguration.h index 4d063dc5e5..8c5ba1bcdc 100644 --- a/src/OpenSimCreator/Documents/ModelWarper/ModelWarperConfiguration.h +++ b/src/OpenSimCreator/Documents/ModelWarper/ModelWarperConfiguration.h @@ -365,7 +365,7 @@ namespace osc::mow // - if zero landmark pairs can be associated between the two landmark files, throw an error // - else, accept those pairs as "the mesh's landmark pairs" class LandmarksAttachedToSuppliedMesh final : public PairedPointSource { - OpenSim_DECLARE_CONCRETE_OBJECT(LandmarksAttachedToSuppliedMesh, PairedPointSource); + OpenSim_DECLARE_CONCRETE_OBJECT(LandmarksAttachedToSuppliedMesh, PairedPointSource) private: PairedPoints implGetPairedPoints(WarpCache&, const OpenSim::Model&, const OpenSim::Component&) final { @@ -396,7 +396,7 @@ namespace osc::mow // - transform all of "the mesh's landmark pairs" in the mesh's frame to the base frame found in step 1 // - merge all of "the mesh's landmark pairs" in "the input mesh set" into a `PairedPoints` class LandmarksOfMeshesAttachedToSameBaseFramePairedPointSource final : public PairedPointSource { - OpenSim_DECLARE_CONCRETE_OBJECT(LandmarksOfMeshesAttachedToSameBaseFramePairedPointSource, PairedPointSource); + OpenSim_DECLARE_CONCRETE_OBJECT(LandmarksOfMeshesAttachedToSameBaseFramePairedPointSource, PairedPointSource) private: PairedPoints implGetPairedPoints(WarpCache&, const OpenSim::Model&, const OpenSim::Component&) final { @@ -709,7 +709,7 @@ namespace osc::mow }; class IdentityMeshWarpingStrategy final : public MeshWarpingStrategy { - OpenSim_DECLARE_CONCRETE_OBJECT(IdentityMeshWarpingStrategy, MeshWarpingStrategy); + OpenSim_DECLARE_CONCRETE_OBJECT(IdentityMeshWarpingStrategy, MeshWarpingStrategy) private: std::unique_ptr implClone() const final { @@ -728,7 +728,7 @@ namespace osc::mow }; class ProduceErrorMeshWarpingStrategy final : public MeshWarpingStrategy { - OpenSim_DECLARE_CONCRETE_OBJECT(ProduceErrorMeshWarpingStrategy, MeshWarpingStrategy); + OpenSim_DECLARE_CONCRETE_OBJECT(ProduceErrorMeshWarpingStrategy, MeshWarpingStrategy) private: std::unique_ptr implClone() const final {