浏览代码

add missing eof newline

Jon Lipstate 2 年之前
父节点
当前提交
937e5de1d8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/strings/ascii_set.odin

+ 1 - 1
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
-}
+}