-
Notifications
You must be signed in to change notification settings - Fork 47
/
deprecated.hh.cmake
56 lines (52 loc) · 2.29 KB
/
deprecated.hh.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* 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 @PACKAGE_CPPNAME@_DEPRECATED_HH
# define @PACKAGE_CPPNAME@_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 () @PACKAGE_CPPNAME@_DEPRECATED;
//
// Tagging a type as deprecated:
// class Foo {};
// typedef Foo Bar @PACKAGE_CPPNAME@_DEPRECATED;
//
// Tagging a variable as deprecated:
// int a @PACKAGE_CPPNAME@_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 @PACKAGE_CPPNAME@_DEPRECATED [[deprecated]]
# define @PACKAGE_CPPNAME@_DEPRECATED_MESSAGE(message) [[deprecated(#message)]]
# elif defined(__GNUC__) || defined(__clang__)
# define @PACKAGE_CPPNAME@_DEPRECATED __attribute__ ((deprecated))
# define @PACKAGE_CPPNAME@_DEPRECATED_MESSAGE(message) __attribute__ (( deprecated(#message) ))
# else
# if defined(_MSC_VER) && !defined(__INTEL_COMPILER)
# define @PACKAGE_CPPNAME@_DEPRECATED __declspec (deprecated)
# define @PACKAGE_CPPNAME@_DEPRECATED_MESSAGE(message) __declspec ( deprecated(#message) )
# else
// If the compiler is not recognized, drop the feature.
# define @PACKAGE_CPPNAME@_DEPRECATED /* nothing */
# define @PACKAGE_CPPNAME@_DEPRECATED_MESSAGE(message)
# endif // __MSVC__
# endif // __cplusplus
# if defined(__GNUC__) || defined(__clang__)
# ifndef @PACKAGE_CPPNAME@_PRAGMA
# define @PACKAGE_CPPNAME@_PRAGMA(X) _Pragma(#X)
# endif
# define @PACKAGE_CPPNAME@_DEPRECATED_HEADER(MSG) @PACKAGE_CPPNAME@_PRAGMA(GCC warning MSG)
# elif defined(_MSC_VER) && !defined(__INTEL_COMPILER)
# define @PACKAGE_CPPNAME@_STRINGIZE_(MSG) #MSG
# define @PACKAGE_CPPNAME@_STRINGIZE(MSG) @PACKAGE_CPPNAME@_STRINGIZE_(MSG)
# define @PACKAGE_CPPNAME@_DEPRECATED_HEADER(MSG) \
__pragma(message(__FILE__ "(" @PACKAGE_CPPNAME@_STRINGIZE(__LINE__) ") : Warning: " MSG))
# else
# define @PACKAGE_CPPNAME@_DEPRECATED_HEADER(MSG)
# endif
#endif //! @PACKAGE_CPPNAME@_DEPRECATED_HH