summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Boehm <hboehm@google.com>2014-09-30 18:33:19 -0700
committerHans Boehm <hboehm@google.com>2014-09-30 18:33:19 -0700
commit2a99455a87c4eea60698ecb699815607a93aaf8d (patch)
tree680440c022213f80ac8e5308e6616c9624ea076b
parent5886e06ece7cfa1a2bfa731dfd89bf166d03a00e (diff)
download3.5-2a99455a87c4eea60698ecb699815607a93aaf8d.tar.gz
Make memory_order_acquire visible in global namespace
We were missing that using directive when including <atomic>. Copied from bionic commit. Bug:17736764 Change-Id: Ia28d2a91d6f4854b83c9f41c99fee6db09663fdc
-rw-r--r--lib/clang/3.5/include/stdatomic.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/clang/3.5/include/stdatomic.h b/lib/clang/3.5/include/stdatomic.h
index 3db25a7..bcea859 100644
--- a/lib/clang/3.5/include/stdatomic.h
+++ b/lib/clang/3.5/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;