#include "export.hpp" #include "mutex.hpp" #include #include #include template mutex& mutex::operator=(const mutex& rhs) { return *this; } template MutexType* mutex::operator&() const { return &inner; } template mutex::mutex(const mutex& datum) {} template mutex::mutex() = default; template mutex::operator M*() const noexcept { return &inner; } template M* mutex::operator->() const noexcept { return &inner; } template class OTR_COMPAT_EXPORT mutex; template class OTR_COMPAT_EXPORT mutex;