diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-11 19:15:32 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-11 19:15:32 +0100 |
| commit | 8468d269dcd3166861dc49f50b0e42a0dce4b61e (patch) | |
| tree | 15e67c7dc6848ad4763de5ad29fa14cd391faad8 | |
| parent | 355b8a8c83badc64d23dbb34ea00bb89ac9245db (diff) | |
Remove @(require_results) from `os.read_directory_iterator`
| -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 |