diff options
author | misterg <misterg@google.com> | 2018-10-31 19:03:46 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2018-11-01 14:42:23 (GMT) |
commit | 88c15b5fdeccfe597998c1cbf73d5be02a9ce728 (patch) | |
tree | eb6b226dd3420c88d4e467795ecea62f7169d158 /googletest/include/gtest | |
parent | 879ac092fde0a19e1b3a61b2546b2a422b1528bc (diff) | |
download | googletest-88c15b5fdeccfe597998c1cbf73d5be02a9ce728.zip googletest-88c15b5fdeccfe597998c1cbf73d5be02a9ce728.tar.gz googletest-88c15b5fdeccfe597998c1cbf73d5be02a9ce728.tar.bz2 |
Googletest export
Adding GTEST_INTERNAL_DEPRECATED ability to mark deprecated
PiperOrigin-RevId: 219515184
Diffstat (limited to 'googletest/include/gtest')
-rw-r--r-- | googletest/include/gtest/internal/gtest-internal.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/googletest/include/gtest/internal/gtest-internal.h b/googletest/include/gtest/internal/gtest-internal.h index f62725a..217ee79 100644 --- a/googletest/include/gtest/internal/gtest-internal.h +++ b/googletest/include/gtest/internal/gtest-internal.h @@ -1423,4 +1423,19 @@ class FlatTuple test_case_name, test_name)>); \ void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() +// Internal Macro to mark an API deprecated, for googletest usage only +// Usage: class GTEST_INTERNAL_DEPRECATED(message) MyClass or +// GTEST_INTERNAL_DEPRECATED(message) <return_type> myFunction(); Every usage of +// a deprecated entity will trigger a warning when compiled with +// `-Wdeprecated-declarations` option (clang, gcc, any __GNUC__ compiler). +// For msvc /W3 option will need to be used +// Note that for 'other' compilers this macro evaluates to nothing to prevent +// compilations errors. +#if defined(_MSC_VER) +#define GTEST_INTERNAL_DEPRECATED(message) __declspec(deprecated(message)) +#elif defined(__GNUC__) +#define GTEST_INTERNAL_DEPRECATED(message) __attribute__((deprecated(message))) +#else +#define GTEST_INTERNAL_DEPRECATED(message) +#endif #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ |