1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys: cpp11-compat: adapt to changed mutex implementation

This commit is contained in:
Kaspar Schleiser 2016-02-29 00:02:04 +01:00
parent c0f39bb55f
commit 3d9020eb46

View File

@ -44,7 +44,7 @@ class mutex {
public:
using native_handle_type = mutex_t*;
inline constexpr mutex() noexcept : m_mtx{0, PRIORITY_QUEUE_INIT} {}
inline constexpr mutex() noexcept : m_mtx{0} {}
~mutex();
void lock();