Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit f6260eb

Browse files
committed
Fix style checker
1 parent 78d15b6 commit f6260eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/atomic.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ in (atomicPtrIsProperlyAligned(here), "Argument `here` is not properly aligned")
304304
* The non-shared lvalue.
305305
*/
306306
ref T assumeUnshared(T)(ref shared T val) @system @nogc pure nothrow
307-
if(!is(T == class) && !is(T == interface))
307+
if (!is(T == class) && !is(T == interface))
308308
{
309309
return *cast(T*) &val;
310310
}

0 commit comments

Comments
 (0)