diff options
author | Joe Sylve <joe.sylve@gmail.com> | 2019-06-25T21·57-0500 |
---|---|---|
committer | Joe Sylve <joe.sylve@gmail.com> | 2019-07-08T16·53-0500 |
commit | 5fc0bf69e7b78d35e6d8621db994f7f307a83d59 (patch) | |
tree | 5af4381362949817f39a923c28ab3e31be596e7c | |
parent | 74d91756c11bc22f9b0108b94da9326f7f9e376f (diff) |
Fixed ABSL_INTERNAL_MACOS_CXX17_TYPES_UNAVAILABLE check
-rw-r--r-- | absl/base/config.h | 2 |
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 |