cmvr-es/dependency/arm/third_party/example-robot-data/v4.3.0/include/example-robot-data/warning.hh

36 lines
1.2 KiB
C++

/*
* This file has been automatically generated by the jrl-cmakemodules.
* Please see https://github.com/jrl-umi3218/jrl-cmakemodules/blob/master/warning.hh.cmake for details.
*/
#ifndef EXAMPLE_ROBOT_DATA_WARNING_HH
# define EXAMPLE_ROBOT_DATA_WARNING_HH
// Emits a warning in a portable way.
//
// To emit a warning, one can insert:
//
// #pragma message EXAMPLE_ROBOT_DATA_WARN("your warning message here")
//
// The use of this syntax is required as this is /not/ a standardized
// feature of C++ language or preprocessor, even if most of the
// compilers support it.
# define EXAMPLE_ROBOT_DATA_WARN_STRINGISE_IMPL(x) #x
# define EXAMPLE_ROBOT_DATA_WARN_STRINGISE(x) \
EXAMPLE_ROBOT_DATA_WARN_STRINGISE_IMPL(x)
# ifdef __GNUC__
# define EXAMPLE_ROBOT_DATA_WARN(exp) ("WARNING: " exp)
# else
# ifdef _MSC_VER
# define FILE_LINE_LINK __FILE__ "(" \
EXAMPLE_ROBOT_DATA_WARN_STRINGISE(__LINE__) ") : "
# define EXAMPLE_ROBOT_DATA_WARN(exp) (FILE_LINE_LINK "WARNING: " exp)
# else
// If the compiler is not recognized, drop the feature.
# define EXAMPLE_ROBOT_DATA_WARN(MSG) /* nothing */
# endif // __MSVC__
# endif // __GNUC__
#endif //! EXAMPLE_ROBOT_DATA_WARNING_HH