diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/atomic.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/src/atomic.h b/src/atomic.h index f800f68..1b92257 100644 --- a/src/atomic.h +++ b/src/atomic.h @@ -37,6 +37,11 @@ class Atomic;  template <typename T>  class Atomic<T, typename std::enable_if<std::is_pod<T>::value>::type>  	: public std::atomic<T> { +	 +	public: +		// inherit methods +		using std::atomic<T>::atomic; +		using std::atomic<T>::operator=;  };  // else work around it using a mutex | 
