diff --git a/BeefLibs/corlib/src/Int32.bf b/BeefLibs/corlib/src/Int32.bf index e2bff733..691621c7 100644 --- a/BeefLibs/corlib/src/Int32.bf +++ b/BeefLibs/corlib/src/Int32.bf @@ -66,7 +66,7 @@ namespace System public override void ToString(String strBuffer) { // Dumb, make better. - char8[] strChars = scope:: char8[16]; + char8[16] strChars = ?; int32 char8Idx = 14; int32 valLeft = (int32)this; bool isNeg = true; diff --git a/BeefLibs/corlib/src/Int64.bf b/BeefLibs/corlib/src/Int64.bf index e4ff1ca9..5540c76e 100644 --- a/BeefLibs/corlib/src/Int64.bf +++ b/BeefLibs/corlib/src/Int64.bf @@ -78,7 +78,7 @@ namespace System public override void ToString(String strBuffer) { // Dumb, make better. - char8[] strChars = scope:: char8[22]; + char8[22] strChars = ?; int32 char8Idx = 20; int64 valLeft = (int64)this; bool isNeg = true; diff --git a/BeefLibs/corlib/src/UInt32.bf b/BeefLibs/corlib/src/UInt32.bf index 59f1a610..dc585908 100644 --- a/BeefLibs/corlib/src/UInt32.bf +++ b/BeefLibs/corlib/src/UInt32.bf @@ -61,7 +61,7 @@ namespace System public override void ToString(String strBuffer) { // Dumb, make better. - char8[] strChars = scope:: char8[16]; + char8[16] strChars = ?; int32 char8Idx = 14; uint32 valLeft = (uint32)this; while (valLeft > 0) diff --git a/BeefLibs/corlib/src/UInt64.bf b/BeefLibs/corlib/src/UInt64.bf index 3003f2d3..59dd6910 100644 --- a/BeefLibs/corlib/src/UInt64.bf +++ b/BeefLibs/corlib/src/UInt64.bf @@ -73,7 +73,7 @@ namespace System public override void ToString(String strBuffer) { // Dumb, make better. - char8[] strChars = scope:: char8[22]; + char8[22] strChars = ?; int32 char8Idx = 20; uint64 valLeft = (uint64)this; while (valLeft > 0)