From 5fbede25cb35b1d5c93e5b967c76496b1785f86b Mon Sep 17 00:00:00 2001 From: Ed_ Date: Thu, 27 Jun 2024 00:00:26 -0400 Subject: [PATCH] fix for compile error on table api breaking change --- code/grime/assert.odin | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/grime/assert.odin b/code/grime/assert.odin index 0b52187..c36433f 100644 --- a/code/grime/assert.odin +++ b/code/grime/assert.odin @@ -16,7 +16,8 @@ dump_stacktrace :: proc( allocator := context.temp_allocator ) -> string for line in lines { table.row( log_table, padding, line.symbol, " - ", line.location ) } - table.build(log_table) + // table.build(log_table) + // TODO(Ed): regression with the stack trace lib writer_builder : StringBuilder str_builder_init( & writer_builder, allocator = allocator )