From 937e5de1d8676c8ae25a8e4b52d2272277aad396 Mon Sep 17 00:00:00 2001 From: Jon Lipstate Date: Mon, 27 Mar 2023 22:23:13 -0700 Subject: [PATCH] add missing eof newline --- core/strings/ascii_set.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/strings/ascii_set.odin b/core/strings/ascii_set.odin index 7e7cec642..11ad8b947 100644 --- a/core/strings/ascii_set.odin +++ b/core/strings/ascii_set.odin @@ -41,4 +41,4 @@ Determines if a given char is contained within an Ascii_Set. */ ascii_set_contains :: proc(as: Ascii_Set, c: byte) -> bool #no_bounds_check { return as[c>>5] & (1<<(c&31)) != 0 -} \ No newline at end of file +}