dtoolbase: Fix compile error in patomic.I with HAVE_THREADS=UNDEF

This commit is contained in:
rdb 2022-12-03 21:53:02 +01:00
parent 863a38e901
commit 82522a7bef

View File

@ -63,6 +63,7 @@ template<class T>
ALWAYS_INLINE T patomic<T>::
operator=(T desired) noexcept {
_value = desired;
return desired;
}
/**