diff options
author | Christopher Ferris <cferris@google.com> | 2020-10-20 18:10:39 -0700 |
---|---|---|
committer | Christopher Ferris <cferris@google.com> | 2020-10-21 06:04:00 +0000 |
commit | 8377b10f291b776031b2ee7156c438954a605214 (patch) | |
tree | 6b0fb336eb1c47df0ec113ef3efe41d178d66103 /libutils/RefBase.cpp | |
parent | 5c573b45ecadd300fd3e729c07a67aa8ec331701 (diff) |
Disable callstack for mac too.
Bug: 171353386
Test: Builds.
Change-Id: Id8a5cce170682ea43aa641c187c22cb31b6fd017
Diffstat (limited to 'libutils/RefBase.cpp')
-rw-r--r-- | libutils/RefBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libutils/RefBase.cpp b/libutils/RefBase.cpp index 252309795..8e45226c5 100644 --- a/libutils/RefBase.cpp +++ b/libutils/RefBase.cpp @@ -55,7 +55,7 @@ // case. #define DEBUG_REFBASE_DESTRUCTION 1 -#if !defined(_WIN32) +#if !defined(_WIN32) && !defined(__APPLE__) // CallStack is only supported on linux type platforms. #define CALLSTACK_ENABLED 1 #else |