From 2b7796ec5cd1a5c4a54135cade7f90846eb79c07 Mon Sep 17 00:00:00 2001 From: AlexBeattie42 <30098201+alexbeattie42@users.noreply.github.com> Date: Thu, 24 Jul 2025 14:12:43 +0300 Subject: [PATCH] Fix ControlLinearNode Overshadowing --- OpenSim/Simulation/Control/ControlLinearNode.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OpenSim/Simulation/Control/ControlLinearNode.h b/OpenSim/Simulation/Control/ControlLinearNode.h index 117ddff650..164204fcc7 100644 --- a/OpenSim/Simulation/Control/ControlLinearNode.h +++ b/OpenSim/Simulation/Control/ControlLinearNode.h @@ -91,6 +91,9 @@ OpenSim_DECLARE_CONCRETE_OBJECT(ControlLinearNode, Object); //-------------------------------------------------------------------------- public: #ifndef SWIG + using Object::operator=; + using Object::operator==; + using Object::operator<; ControlLinearNode& operator=(const ControlLinearNode &aControl); bool operator==(const ControlLinearNode &aControl) const; bool operator<(const ControlLinearNode &aControl) const;