summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Glöckner <cgloeckner@freenet.de>2016-03-31 08:10:44 +0200
committerChristian Glöckner <cgloeckner@freenet.de>2016-03-31 08:10:44 +0200
commit357bfe71e62970752bf32029f506b2e96967b1d1 (patch)
tree48c91306e82bd34de8845cf5e46c7d7348a949a6 /src
parentbd6bee9faac81dc9d0ed44a7d6329d4acdfdfc00 (diff)
Fixed API of class Atomic for POD
Diffstat (limited to 'src')
-rw-r--r--src/atomic.h5
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