diff options
author | Elliott Hughes <enh@google.com> | 2018-10-25 11:00:00 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2018-10-25 11:00:00 -0700 |
commit | 5e62b34c0d6fa545b487b9b64fb4a04a0589bc13 (patch) | |
tree | e08ee44067b3b636ace11b21ec8d63a08d4d2a19 /libc/malloc_debug/debug_disable.h | |
parent | c89a3971e94c30611c885e4c440eae2fd9937948 (diff) |
Clean up bionic_macros.h a bit.
Use <android-base/macros.h> instead where possible, and move the bionic
macros out of the way of the libbase ones. Yes, there are folks who manage
to end up with both included at once (thanks OpenGL!), and cleaning that
up doesn't seem nearly as practical as just making this change.
Bug: N/A
Test: builds
Change-Id: I23fc544f39d5addf81dc61471771a5438778895b
Diffstat (limited to 'libc/malloc_debug/debug_disable.h')
-rw-r--r-- | libc/malloc_debug/debug_disable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/malloc_debug/debug_disable.h b/libc/malloc_debug/debug_disable.h index 0049595e2..f9c3149ee 100644 --- a/libc/malloc_debug/debug_disable.h +++ b/libc/malloc_debug/debug_disable.h @@ -57,5 +57,5 @@ class ScopedDisableDebugCalls { private: bool disabled_; - DISALLOW_COPY_AND_ASSIGN(ScopedDisableDebugCalls); + BIONIC_DISALLOW_COPY_AND_ASSIGN(ScopedDisableDebugCalls); }; |