Skip to content

Commit

Permalink
Remove additional semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkewley committed Jan 24, 2025
1 parent 8af2064 commit 2aeb64b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ namespace
{
// A mock component that emits a cylinder with NaN radius.
class ComponentThatGeneratesNaNCylinder : public OpenSim::ModelComponent {
OpenSim_DECLARE_CONCRETE_OBJECT(ComponentThatGeneratesNaNCylinder, OpenSim::ModelComponent);
OpenSim_DECLARE_CONCRETE_OBJECT(ComponentThatGeneratesNaNCylinder, OpenSim::ModelComponent)

public:
void generateDecorations(
Expand Down Expand Up @@ -464,7 +464,7 @@ namespace
{
// A mock component that generates `SimTK::DecorativeSphere`s with NaNed rotations.
class ComponentThatGeneratesNaNRotationSphere : public OpenSim::ModelComponent {
OpenSim_DECLARE_CONCRETE_OBJECT(ComponentThatGeneratesNaNRotationSphere, OpenSim::ModelComponent);
OpenSim_DECLARE_CONCRETE_OBJECT(ComponentThatGeneratesNaNRotationSphere, OpenSim::ModelComponent)

public:
void generateDecorations(
Expand Down Expand Up @@ -511,7 +511,7 @@ namespace
{
// A mock component that generates `SimTK::DecorativeSphere`s with NaNed translation.
class ComponentThatGeneratesNaNTranslationSphere : public OpenSim::ModelComponent {
OpenSim_DECLARE_CONCRETE_OBJECT(ComponentThatGeneratesNaNTranslationSphere, OpenSim::ModelComponent);
OpenSim_DECLARE_CONCRETE_OBJECT(ComponentThatGeneratesNaNTranslationSphere, OpenSim::ModelComponent)

public:
void generateDecorations(
Expand Down

0 comments on commit 2aeb64b

Please sign in to comment.