57 lines
2.1 KiB
C++
57 lines
2.1 KiB
C++
/*
|
|
* This file has been automatically generated by the jrl-cmakemodules.
|
|
* Please see https://github.com/jrl-umi3218/jrl-cmakemodules/blob/master/deprecated.hh.cmake for details.
|
|
*/
|
|
|
|
#ifndef EIGENPY_DEPRECATED_HH
|
|
# define EIGENPY_DEPRECATED_HH
|
|
|
|
// Define a suffix which can be used to tag a type, a function or a a
|
|
// variable as deprecated (i.e. it will emit a warning when using it).
|
|
//
|
|
// Tagging a function as deprecated:
|
|
// void foo () EIGENPY_DEPRECATED;
|
|
//
|
|
// Tagging a type as deprecated:
|
|
// class Foo {};
|
|
// typedef Foo Bar EIGENPY_DEPRECATED;
|
|
//
|
|
// Tagging a variable as deprecated:
|
|
// int a EIGENPY_DEPRECATED = 0;
|
|
//
|
|
// The use of a macro is required as this is /not/ a standardized
|
|
// feature of C++ language or preprocessor, even if most of the
|
|
// compilers support it.
|
|
# if defined(__cplusplus) && (__cplusplus >= 201402L)
|
|
# define EIGENPY_DEPRECATED [[deprecated]]
|
|
# define EIGENPY_DEPRECATED_MESSAGE(message) [[deprecated(#message)]]
|
|
# elif defined(__GNUC__) || defined(__clang__)
|
|
# define EIGENPY_DEPRECATED __attribute__ ((deprecated))
|
|
# define EIGENPY_DEPRECATED_MESSAGE(message) __attribute__ (( deprecated(#message) ))
|
|
# else
|
|
# if defined(_MSC_VER) && !defined(__INTEL_COMPILER)
|
|
# define EIGENPY_DEPRECATED __declspec (deprecated)
|
|
# define EIGENPY_DEPRECATED_MESSAGE(message) __declspec ( deprecated(#message) )
|
|
# else
|
|
// If the compiler is not recognized, drop the feature.
|
|
# define EIGENPY_DEPRECATED /* nothing */
|
|
# define EIGENPY_DEPRECATED_MESSAGE(message)
|
|
# endif // __MSVC__
|
|
# endif // __cplusplus
|
|
|
|
# if defined(__GNUC__) || defined(__clang__)
|
|
# ifndef EIGENPY_PRAGMA
|
|
# define EIGENPY_PRAGMA(X) _Pragma(#X)
|
|
# endif
|
|
# define EIGENPY_DEPRECATED_HEADER(MSG) EIGENPY_PRAGMA(GCC warning MSG)
|
|
# elif defined(_MSC_VER) && !defined(__INTEL_COMPILER)
|
|
# define EIGENPY_STRINGIZE_(MSG) #MSG
|
|
# define EIGENPY_STRINGIZE(MSG) EIGENPY_STRINGIZE_(MSG)
|
|
# define EIGENPY_DEPRECATED_HEADER(MSG) \
|
|
__pragma(message(__FILE__ "(" EIGENPY_STRINGIZE(__LINE__) ") : Warning: " MSG))
|
|
# else
|
|
# define EIGENPY_DEPRECATED_HEADER(MSG)
|
|
# endif
|
|
|
|
#endif //! EIGENPY_DEPRECATED_HH
|