Skip to content

Commit 8748ce6

Browse files
committed
fix pragmas
1 parent 44f5795 commit 8748ce6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/mir/internal/memory.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pure:
2121

2222
enum uint platformAlignment = double.alignof > real.alignof ? double.alignof : real.alignof;
2323

24-
@nogc nothrow pragma(inline, true):
24+
@nogc nothrow:
2525

2626
@safe pure
2727
package bool isGoodDynamicAlignment()(uint x)

source/mir/utility.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ unittest
577577

578578
private ExtMulResult!ulong extMul_X86_64()(ulong a, ulong b)
579579
{
580-
pragma(msg, "EEE");
580+
// pragma(inline, true);
581581
asm @safe pure nothrow @nogc
582582
{
583583
naked;

0 commit comments

Comments
 (0)