From a85586bc0763a7e084fc0e3715f7c66f99ca8196 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Wed, 6 Nov 2024 12:53:47 +0100 Subject: [PATCH] Inherit Atomic#operator=() from base class --- lib/base/atomic.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/base/atomic.hpp b/lib/base/atomic.hpp index 855850336..ce9d86cbb 100644 --- a/lib/base/atomic.hpp +++ b/lib/base/atomic.hpp @@ -24,6 +24,8 @@ namespace icinga template class Atomic : public std::atomic { public: + using std::atomic::operator=; + /** * The only safe constructor of std::atomic#atomic *