Loading src/TNL/Atomic.h +1 −0 Original line number Diff line number Diff line Loading @@ -63,6 +63,7 @@ public: // this copy-constructor and copy-assignment operator are not atomic as they // synchronize only with respect to one or the other object. Atomic( const Atomic& desired ) noexcept : std::atomic< T >() { this->store(desired.load()); } Loading Loading
src/TNL/Atomic.h +1 −0 Original line number Diff line number Diff line Loading @@ -63,6 +63,7 @@ public: // this copy-constructor and copy-assignment operator are not atomic as they // synchronize only with respect to one or the other object. Atomic( const Atomic& desired ) noexcept : std::atomic< T >() { this->store(desired.load()); } Loading