Skip to content

Commit

Permalink
Make the linter happy
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Luis Rivero <[email protected]>
  • Loading branch information
j-rivero committed Dec 14, 2023
1 parent 5bd0f73 commit 66cc09f
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
#include <gz/sim/Types.hh>

#ifndef _WIN32
# define JointPositionController_EXPORTS_API __attribute__ ((visibility ("default")))
# define JointPositionController_EXPORTS_API \
__attribute__ ((visibility ("default")))
#else
# if (defined(JointPositionController_EXPORTS))
# define JointPositionController_EXPORTS_API __declspec(dllexport)
Expand All @@ -46,7 +47,8 @@ namespace gui
class JointPositionControllerPrivate;

/// \brief Model holding information about joints
class JointPositionController_EXPORTS_API JointsModel : public QStandardItemModel
class JointPositionController_EXPORTS_API JointsModel :
public QStandardItemModel
{
Q_OBJECT

Expand Down Expand Up @@ -98,7 +100,8 @@ namespace gui
/// `<model_name>`: Load the widget pointed at the given model, so it's not
/// necessary to select it. If a model is given at startup, the plugin starts
/// in locked mode.
class JointPositionController_EXPORTS_API JointPositionController : public sim::GuiSystem
class JointPositionController_EXPORTS_API JointPositionController :
public sim::GuiSystem
{
Q_OBJECT

Expand Down

0 comments on commit 66cc09f

Please sign in to comment.