Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Unified Diff: src/shared/atomic_cpp11.h

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/shared/atomic.h ('k') | src/shared/atomic_gcc_intrinsics.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/atomic_cpp11.h
diff --git a/src/shared/atomic_cpp11.h b/src/shared/atomic_cpp11.h
index 621c0310eec6f73e2b75469011bf531187610937..0c329e63bed5a259f0c6d167436cf112d1dabecf 100644
--- a/src/shared/atomic_cpp11.h
+++ b/src/shared/atomic_cpp11.h
@@ -11,7 +11,7 @@
#include <atomic>
-namespace fletch {
+namespace dartino {
template <typename T>
using Atomic = std::atomic<T>;
@@ -23,6 +23,6 @@ static const std::memory_order kRelease = std::memory_order_release;
static const std::memory_order kAcqRel = std::memory_order_acq_rel;
static const std::memory_order kSeqCst = std::memory_order_seq_cst;
-} // namespace fletch
+} // namespace dartino
#endif // SRC_SHARED_ATOMIC_CPP11_H_
« no previous file with comments | « src/shared/atomic.h ('k') | src/shared/atomic_gcc_intrinsics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698