add missing eof newline

This commit is contained in:
Jon Lipstate
2023-03-27 22:23:13 -07:00
parent 7de67f8c1b
commit 937e5de1d8

View File

@@ -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
}
}