mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Use semicolons as field delimiters in records
This commit is contained in:
+15
-15
@@ -10,27 +10,27 @@ import (
|
||||
_BUFFER_SIZE :: 1<<12;
|
||||
|
||||
StringBuffer :: union {
|
||||
Static {buf: []u8},
|
||||
Dynamic{buf: [dynamic]u8},
|
||||
Static {buf: []u8};
|
||||
Dynamic{buf: [dynamic]u8};
|
||||
}
|
||||
|
||||
FmtInfo :: struct {
|
||||
minus: bool,
|
||||
plus: bool,
|
||||
space: bool,
|
||||
zero: bool,
|
||||
hash: bool,
|
||||
width_set: bool,
|
||||
prec_set: bool,
|
||||
minus: bool;
|
||||
plus: bool;
|
||||
space: bool;
|
||||
zero: bool;
|
||||
hash: bool;
|
||||
width_set: bool;
|
||||
prec_set: bool;
|
||||
|
||||
width: int,
|
||||
prec: int,
|
||||
width: int;
|
||||
prec: int;
|
||||
|
||||
reordered: bool,
|
||||
good_arg_index: bool,
|
||||
reordered: bool;
|
||||
good_arg_index: bool;
|
||||
|
||||
buf: ^StringBuffer,
|
||||
arg: any, // Temporary
|
||||
buf: ^StringBuffer;
|
||||
arg: any; // Temporary
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user