Skip to content

Commit 2e17de6

Browse files
committed
Style
1 parent e5546ac commit 2e17de6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

std/numeric.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3869,7 +3869,7 @@ public:
38693869
else
38703870
{
38713871
immutable bufferSize = 2*size;
3872-
this.pStorage = cast(lookup_t*)malloc(lookup_t.sizeof*bufferSize);
3872+
this.pStorage = cast(lookup_t*) malloc(lookup_t.sizeof*bufferSize);
38733873
if (!this.pStorage)
38743874
{
38753875
onOutOfMemoryError();
@@ -3946,7 +3946,7 @@ public:
39463946
}
39473947
}
39483948

3949-
this.table = cast(immutable)memSpace;
3949+
this.table = cast(immutable) memSpace;
39503950
}
39513951

39523952
///

0 commit comments

Comments
 (0)