Skip to content

Commit

Permalink
sys: cpp11-compat: adapt to changed mutex implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Mar 29, 2016
1 parent c0f39bb commit 3d9020e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/cpp11-compat/include/riot/mutex.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 3d9020e

Please sign in to comment.