We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35316c3 commit 4a72accCopy full SHA for 4a72acc
source/vibe/core/sync.d
@@ -327,8 +327,8 @@ final class TaskMutex : core.sync.mutex.Mutex, Lockable {
327
@safe:
328
private TaskMutexImpl!false m_impl;
329
330
- this(Object o) { m_impl.setup(); super(o); }
331
- this() { m_impl.setup(); }
+ this(Object o) nothrow { m_impl.setup(); super(o); }
+ this() nothrow { m_impl.setup(); }
332
333
override bool tryLock() nothrow { return m_impl.tryLock(); }
334
override void lock() nothrow { m_impl.lock(); }
0 commit comments