فهرست منبع

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