summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Boehm <hboehm@google.com>2014-09-30 18:33:19 -0700
committerStephen Hines <srhines@google.com>2014-10-20 11:39:03 -0700
commitbdd58b4bfe9f2a6f02aeb4cdbe3c3cef7cb8cc6b (patch)
treecb8168fbb97e70df9e53eee0fbe78a3aca10114f
parent966f4d87905bbec9ea0e660f3a2679c09b871b7a (diff)
download3.5-bdd58b4bfe9f2a6f02aeb4cdbe3c3cef7cb8cc6b.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 (cherry picked from commit 2a99455a87c4eea60698ecb699815607a93aaf8d) Change-Id: I543a38f080d4ba19596aa32492d41ddf511ff5f9
-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 adf60bb..8e1260f 100644
--- a/lib/clang/3.5/include/stdatomic.h
+++ b/lib/clang/3.5/include/stdatomic.h
@@ -69,6 +69,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;