summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matt Calabrese <38107210+mattcalabrese-google@users.noreply.github.com>2019-07-08 16:04:28 -0400
committerGravatar GitHub <noreply@github.com>2019-07-08 16:04:28 -0400
commit3c98fcc0461bd2a4b9c149d4748a7373a225cf4b (patch)
tree5af4381362949817f39a923c28ab3e31be596e7c
parent74d91756c11bc22f9b0108b94da9326f7f9e376f (diff)
parent5fc0bf69e7b78d35e6d8621db994f7f307a83d59 (diff)
Merge pull request #340 from jtsylve/macos_cxx17_fix
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 f12f84fd..406a931f 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