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_ |