From 1b2269beccab5c2f63663586eabb42912c75f984 Mon Sep 17 00:00:00 2001 From: Hans Boehm Date: Wed, 15 Oct 2014 11:00:28 +0800 Subject: [PATCH] Make memory_order_acquire visible in global namespace We were missing that using directive when including . Bug:17736764 Change-Id: I93673dc60cca47195ff7bd651840c77255fb2d4a --- ndk/platforms/android-21/include/stdatomic.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ndk/platforms/android-21/include/stdatomic.h b/ndk/platforms/android-21/include/stdatomic.h index 3db25a78e..bcea85924 100644 --- a/ndk/platforms/android-21/include/stdatomic.h +++ b/ndk/platforms/android-21/include/stdatomic.h @@ -89,6 +89,7 @@ using std::atomic_signal_fence; using std::memory_order; using std::memory_order_relaxed; using std::memory_order_consume; +using std::memory_order_acquire; using std::memory_order_release; using std::memory_order_acq_rel; using std::memory_order_seq_cst;