Skip to content

Commit 8c3d761

Browse files
committed
fiber_entryPoint() is noreturn
1 parent ab57e77 commit 8c3d761

File tree

1 file changed

+1
-1
lines changed
  • druntime/src/core/thread/fiber

1 file changed

+1
-1
lines changed

druntime/src/core/thread/fiber/base.d

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ package
2727
import core.exception : onOutOfMemoryError;
2828
import core.stdc.stdlib : abort;
2929

30-
extern (C) void fiber_entryPoint() nothrow
30+
extern (C) noreturn fiber_entryPoint() nothrow
3131
{
3232
FiberBase obj = FiberBase.getThis();
3333
assert( obj );

0 commit comments

Comments
 (0)