We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5546ac commit 2e17de6Copy full SHA for 2e17de6
std/numeric.d
@@ -3869,7 +3869,7 @@ public:
3869
else
3870
{
3871
immutable bufferSize = 2*size;
3872
- this.pStorage = cast(lookup_t*)malloc(lookup_t.sizeof*bufferSize);
+ this.pStorage = cast(lookup_t*) malloc(lookup_t.sizeof*bufferSize);
3873
if (!this.pStorage)
3874
3875
onOutOfMemoryError();
@@ -3946,7 +3946,7 @@ public:
3946
}
3947
3948
3949
- this.table = cast(immutable)memSpace;
+ this.table = cast(immutable) memSpace;
3950
3951
3952
///
0 commit comments