mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
make g_str_buf a static buffer of size 1K (#3321)
This commit is contained in:

committed by
Alexander Medvednikov

parent
7bc5cfc53a
commit
778a1cc34a
@ -146,7 +146,7 @@ $c_common_macros
|
||||
#define DEFAULT_GT(a, b) (a > b)
|
||||
#define DEFAULT_GE(a, b) (a >= b)
|
||||
//================================== GLOBALS =================================*/
|
||||
byteptr g_str_buf;
|
||||
byte g_str_buf[1024];
|
||||
int load_so(byteptr);
|
||||
void reload_so();
|
||||
'
|
||||
|
Reference in New Issue
Block a user