From 703e1aa2bcf6bb059a3dd0e12a02cf02ed5449cf Mon Sep 17 00:00:00 2001 From: Ginger Bill Date: Sat, 7 Jan 2017 11:44:42 +0000 Subject: Fix core library; Disable adding entity definitions for blank identifiers --- core/_preload.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/_preload.odin') diff --git a/core/_preload.odin b/core/_preload.odin index d65f3d8e4..0d73e5462 100644 --- a/core/_preload.odin +++ b/core/_preload.odin @@ -308,7 +308,7 @@ __bounds_check_error :: proc(file: string, line, column: int, index, count: int) if 0 <= index && index < count { return; } - fmt.fprintf(os.stderr, "%(%:%) Index % is out of bounds range [0, %)\n", + fmt.fprintf(os.stderr, "%(%:%) Index % is out of bounds range 0..<%\n", file, line, column, index, count); __debug_trap(); } -- cgit v1.2.3