mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 22:28:46 +00:00
Fix stray space vs. tab
This commit is contained in:
@@ -118,10 +118,10 @@ _encode :: proc(out, data: []byte, ENC_TBL := ENC_TABLE, allocator := context.al
|
|||||||
|
|
||||||
@(optimization_mode="favor_size")
|
@(optimization_mode="favor_size")
|
||||||
decode :: proc(
|
decode :: proc(
|
||||||
data: string,
|
data: string,
|
||||||
DEC_TBL := DEC_TABLE,
|
DEC_TBL := DEC_TABLE,
|
||||||
validate: Validate_Proc = _validate_default,
|
validate: Validate_Proc = _validate_default,
|
||||||
allocator := context.allocator) -> (out: []byte, err: Error) {
|
allocator := context.allocator) -> (out: []byte, err: Error) {
|
||||||
if len(data) == 0 {
|
if len(data) == 0 {
|
||||||
return nil, .None
|
return nil, .None
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user