diff options
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | core/os/dir.odin | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 4efb5d73e..00dbcc2a5 100644 --- a/.gitignore +++ b/.gitignore @@ -279,6 +279,9 @@ demo.bin libLLVM*.so* *.a +# WASM +*.wasm + # shared collection shared/ diff --git a/core/os/dir.odin b/core/os/dir.odin index a2fba81e4..2548480c2 100644 --- a/core/os/dir.odin +++ b/core/os/dir.odin @@ -195,7 +195,6 @@ Example: } } */ -@(require_results) read_directory_iterator :: proc(it: ^Read_Directory_Iterator) -> (fi: File_Info, index: int, ok: bool) { if it.f == nil { return |