Skip to content

Commit 0956c59

Browse files
committed
fiber_initStack: "static" removed
1 parent bc02f9f commit 0956c59

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ private
261261
{
262262
// External asm stack initialization is used to support different register
263263
// storage sizes that the D compiler does not know about
264-
extern (C) static void* fiber_initStack(void* stack, void* entry) nothrow @nogc;
264+
extern (C) void* fiber_initStack(void* stack, void* entry) nothrow @nogc;
265265
extern (C) void fiber_trampoline() nothrow;
266266
}
267267
}

0 commit comments

Comments
 (0)