Browse Source

Remove unneeded `loc` argument

Feoramund 1 year ago
parent
commit
99c955d124
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/text/table/table.odin

+ 1 - 1
core/text/table/table.odin

@@ -127,7 +127,7 @@ set_cell_alignment :: proc(tbl: ^Table, row, col: int, alignment: Cell_Alignment
 	tbl.dirty = true
 	tbl.dirty = true
 }
 }
 
 
-format :: proc(tbl: ^Table, _fmt: string, args: ..any, loc := #caller_location) -> string {
+format :: proc(tbl: ^Table, _fmt: string, args: ..any) -> string {
 	context.allocator = tbl.format_allocator
 	context.allocator = tbl.format_allocator
 	return fmt.aprintf(_fmt, ..args)
 	return fmt.aprintf(_fmt, ..args)
 }
 }