diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2022-01-17 13:17:04 +0100 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2022-01-17 13:17:04 +0100 |
| commit | b219349e9d8e0e67c1258fbe64f809f72dd413de (patch) | |
| tree | 22f181204194a2d49b55b2a19f23456233e3214c /src/common | |
| parent | 189998bc09a28a4387af12e451dcac6fbc656d62 (diff) | |
FIx new slashpath change
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/ast.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/ast.odin b/src/common/ast.odin index ff6f7e2..6e774b2 100644 --- a/src/common/ast.odin +++ b/src/common/ast.odin @@ -5,7 +5,7 @@ import "core:log" import "core:mem" import "core:fmt" import "core:strings" -import "core:path" +import path "core:path/slashpath" keyword_map: map[string]bool = { "int" = true, |