From 04ce3dd40e28f337ccd96bdee3464a965654c83f Mon Sep 17 00:00:00 2001 From: Patrick Rohr Date: Thu, 11 Mar 2021 10:34:50 +0000 Subject: Revert "Revert "[jsoncpp] disable JSONCPP_DEPRECATED to make upgrade easier"" This reverts commit fdbccc888b01374b90f67a559e1718067ff819e8. Reason for revert: This is breaking most ATV, see go/atv-build-cop-quarterdeck Bug: 182450506 Change-Id: I11190274438b0470fefd432e19121aedb98072d9 --- include/json/config.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/json/config.h b/include/json/config.h index 6359273..6912567 100644 --- a/include/json/config.h +++ b/include/json/config.h @@ -74,6 +74,7 @@ extern JSON_API int msvc_pre1900_c99_snprintf(char* outBuf, size_t size, // C++11 should be used directly in JSONCPP. #define JSONCPP_OVERRIDE override +#if 0 // Android change: b/170642246 #ifdef __clang__ #if __has_extension(attribute_deprecated_with_message) #define JSONCPP_DEPRECATED(message) __attribute__((deprecated(message))) @@ -88,6 +89,7 @@ extern JSON_API int msvc_pre1900_c99_snprintf(char* outBuf, size_t size, // MSVC) #define JSONCPP_DEPRECATED(message) __declspec(deprecated(message)) #endif // __clang__ || __GNUC__ || _MSC_VER +#endif // Android change: b/170642246 #if !defined(JSONCPP_DEPRECATED) #define JSONCPP_DEPRECATED(message) -- cgit v1.2.3