AtomicCondition: add deduction guide for CTAD

Fixes clang warning '-Wctad-maybe-unsupported'.
This commit is contained in:
Tom 2020-08-01 14:27:05 +02:00
parent 1f8522952b
commit bc4e2b7881

View File

@ -122,5 +122,9 @@ private:
}; };
template<typename ValueType>
AtomicCondition(ValueType) -> AtomicCondition<ValueType>;
} // namespace sgnl } // namespace sgnl