Documentation Home >> Headers >> <atomic> Header >> std::atomic >> specializations >> std::atomic<T*> >> std::atomic<T*> Conversion Assignment Operator

Store a new value in *this.

T* operator=(T* b) volatile;

Effects:

this->store(b,std::memory_order_seq_cst).

Returns:

b.

Throws:

Nothing.

Header

#include <atomic>

See Also