aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Joe Sylve <joe.sylve@gmail.com>2019-06-25 16:57:48 -0500
committerGravatar Joe Sylve <joe.sylve@gmail.com>2019-07-08 11:53:29 -0500
commit5fc0bf69e7b78d35e6d8621db994f7f307a83d59 (patch)
tree5af4381362949817f39a923c28ab3e31be596e7c
parent74d91756c11bc22f9b0108b94da9326f7f9e376f (diff)
Fixed ABSL_INTERNAL_MACOS_CXX17_TYPES_UNAVAILABLE check
-rw-r--r--absl/base/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/base/config.h b/absl/base/config.h
index f12f84f..406a931 100644
--- a/absl/base/config.h
+++ b/absl/base/config.h
@@ -375,7 +375,7 @@
// https://github.com/abseil/abseil-cpp/issues/207 and
// https://developer.apple.com/documentation/xcode_release_notes/xcode_10_release_notes
#if defined(__APPLE__) && defined(_LIBCPP_VERSION) && \
- defined(__MAC_OS_X_VERSION_MIN_REQUIRED__) && \
+ defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && \
__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 101400
#define ABSL_INTERNAL_MACOS_CXX17_TYPES_UNAVAILABLE 1
#else