Replace usage of inline proc with #force_inline proc in the core library

This commit is contained in:
gingerBill
2021-02-23 16:14:47 +00:00
parent 41b854f192
commit aa93305015
26 changed files with 182 additions and 182 deletions
+2 -2
View File
@@ -8,13 +8,13 @@ package path
import "core:strings"
// is_separator checks whether the byte is a valid separator character
is_separator :: inline proc(c: byte) -> bool {
is_separator :: proc(c: byte) -> bool {
return c == '/';
}
// is_abs checks whether the path is absolute
is_abs :: inline proc(path: string) -> bool {
is_abs :: proc(path: string) -> bool {
return len(path) > 0 && path[0] == '/';
}