Inherit Atomic#operator=() from base class

This commit is contained in:
Alexander A. Klimov 2024-11-06 12:53:47 +01:00
parent c253e7eb6e
commit a85586bc07

View File

@ -24,6 +24,8 @@ namespace icinga
template<class T>
class Atomic : public std::atomic<T> {
public:
using std::atomic<T>::operator=;
/**
* The only safe constructor of std::atomic#atomic
*