mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-01 05:45:59 +02:00
Extensive runtime refactor to reduce generated executable sizes
This commit is contained in:
parent
4e750a7e1a
commit
ddd9b1b218
74 changed files with 2514 additions and 717 deletions
|
@ -199,7 +199,11 @@ namespace System
|
|||
[CallingConvention(.Stdcall), CLink]
|
||||
static extern int32 ftoa(float val, char8* str);
|
||||
|
||||
#if !BF_RUNTIME_DISABLE
|
||||
static extern int32 ToString(double val, char8* str, bool roundTrip);
|
||||
#else
|
||||
static int32 ToString(double val, char8* str, bool roundTrip) => Runtime.NotImplemented();
|
||||
#endif
|
||||
|
||||
public override void ToString(String strBuffer)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue