Skip to content
Snippets Groups Projects
Commit 3d9020eb authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

sys: cpp11-compat: adapt to changed mutex implementation

parent c0f39bb5
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ class mutex { ...@@ -44,7 +44,7 @@ class mutex {
public: public:
using native_handle_type = mutex_t*; using native_handle_type = mutex_t*;
inline constexpr mutex() noexcept : m_mtx{0, PRIORITY_QUEUE_INIT} {} inline constexpr mutex() noexcept : m_mtx{0} {}
~mutex(); ~mutex();
void lock(); void lock();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment