Skip to content

Commit

Permalink
Fix Windows compilation (#1568)
Browse files Browse the repository at this point in the history
* Remove EXPORTs for ScrewVisual, ScrewDisplay
  • Loading branch information
Tobias-Fischer authored Dec 14, 2020
1 parent 07cb891 commit d0def50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/rviz/default_plugin/screw_display.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace rviz
class ScrewVisual;

template <class MessageType>
class RVIZ_EXPORT ScrewDisplay : public rviz::MessageFilterDisplay<MessageType>
class ScrewDisplay : public rviz::MessageFilterDisplay<MessageType>
{
public:
// Constructor. pluginlib::ClassLoader creates instances by calling
Expand Down
2 changes: 1 addition & 1 deletion src/rviz/default_plugin/screw_visual.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class BillboardLine;
namespace rviz
{
// ScrewVisual visualizes a single screw, i.e. a wrench, twist, or acceleration
class RVIZ_EXPORT ScrewVisual
class ScrewVisual
{
public:
// Constructor. Creates the visual stuff and puts it into the scene, but in an unconfigured state.
Expand Down
2 changes: 1 addition & 1 deletion src/rviz/default_plugin/wrench_visual.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace rviz
{
// For API compatibility we provide the old WrenchVisual class as well
class [[deprecated("Replace with ScrewVisual")]] WrenchVisual;
class RVIZ_EXPORT WrenchVisual : public ScrewVisual
class WrenchVisual : public ScrewVisual
{
public:
using ScrewVisual::ScrewVisual;
Expand Down

0 comments on commit d0def50

Please sign in to comment.