We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 35316c3 + 4a72acc commit 0706b67Copy full SHA for 0706b67
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