35 #ifndef OMPL_UTIL_DEPRECATION_
36 #define OMPL_UTIL_DEPRECATION_
42 #define OMPL_DEPRECATED __attribute__((deprecated))
43 #elif defined(_MSC_VER)
44 #define OMPL_DEPRECATED __declspec(deprecated)
45 #elif defined(__clang__)
46 #define OMPL_DEPRECATED __attribute__((deprecated("OMPL: Use of this method is deprecated")))
48 #define OMPL_DEPRECATED