aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/third_party/abseil-cpp/absl/base/macros.h
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2018-02-06 09:28:30 -0800
committerGravatar GitHub <noreply@github.com>2018-02-06 09:28:30 -0800
commit28850292d4397562dde0d108fb848b405c689d76 (patch)
treec4683acd6074a564bc0d63fa0b497bd5e18d2097 /Firestore/third_party/abseil-cpp/absl/base/macros.h
parentcd17b85587d1a827389ea1e18d0ce5622606cd5f (diff)
Update abseil-cpp to a new upstream (#754)
Diffstat (limited to 'Firestore/third_party/abseil-cpp/absl/base/macros.h')
-rw-r--r--Firestore/third_party/abseil-cpp/absl/base/macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firestore/third_party/abseil-cpp/absl/base/macros.h b/Firestore/third_party/abseil-cpp/absl/base/macros.h
index d414087..5ae0f05 100644
--- a/Firestore/third_party/abseil-cpp/absl/base/macros.h
+++ b/Firestore/third_party/abseil-cpp/absl/base/macros.h
@@ -146,7 +146,7 @@ enum LinkerInitialized {
// Every usage of a deprecated entity will trigger a warning when compiled with
// clang's `-Wdeprecated-declarations` option. This option is turned off by
// default, but the warnings will be reported by clang-tidy.
-#if defined(__clang__) && __cplusplus >= 201103L && defined(__has_warning)
+#if defined(__clang__) && __cplusplus >= 201103L
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
#endif