about summary refs log tree commit diff
path: root/absl
diff options
context:
space:
mode:
authorJoe Sylve <joe.sylve@gmail.com>2019-06-25T21·57-0500
committerJoe Sylve <joe.sylve@gmail.com>2019-07-08T16·53-0500
commit5fc0bf69e7b78d35e6d8621db994f7f307a83d59 (patch)
tree5af4381362949817f39a923c28ab3e31be596e7c /absl
parent74d91756c11bc22f9b0108b94da9326f7f9e376f (diff)
Fixed ABSL_INTERNAL_MACOS_CXX17_TYPES_UNAVAILABLE check
Diffstat (limited to 'absl')
-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 f12f84fde6b2..406a931f4858 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