Skip to content

Commit

Permalink
update deprecated macro for MSVC (#27)
Browse files Browse the repository at this point in the history
* fix windows build

* add deprecated macro (#3)
  • Loading branch information
kejxu authored and clalancette committed Apr 5, 2019
1 parent 4707296 commit f312210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion urdf/include/urdf/visibility_control.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#else
#define URDF_EXPORT __declspec(dllexport)
#define URDF_IMPORT __declspec(dllimport)
#define URDF_DEPRECATED(msg) __attribute__((deprecated(msg)))
#define URDF_DEPRECATED(msg) __declspec(deprecated(msg))
#endif
#ifdef URDF_BUILDING_LIBRARY
#define URDF_PUBLIC URDF_EXPORT
Expand Down

0 comments on commit f312210

Please sign in to comment.