mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
fix -vet
This commit is contained in:
@@ -52,7 +52,7 @@ TEMP_ALLOCATOR_GUARD :: #force_inline proc(collisions: []runtime.Allocator, loc
|
|||||||
|
|
||||||
Temp_Allocator :: struct {
|
Temp_Allocator :: struct {
|
||||||
using arena: ^runtime.Arena,
|
using arena: ^runtime.Arena,
|
||||||
using allocator: runtime.Allocator
|
using allocator: runtime.Allocator,
|
||||||
}
|
}
|
||||||
|
|
||||||
get_temp_allocator :: proc(tmp: runtime.Arena_Temp, _: runtime.Source_Code_Location) -> Temp_Allocator {
|
get_temp_allocator :: proc(tmp: runtime.Arena_Temp, _: runtime.Source_Code_Location) -> Temp_Allocator {
|
||||||
|
|||||||
@@ -206,7 +206,7 @@ copy_directory :: proc(dst, src: string, dst_perm := 0o755) -> Error {
|
|||||||
|
|
||||||
file_infos := read_all_directory_by_path(src, temp_allocator) or_return
|
file_infos := read_all_directory_by_path(src, temp_allocator) or_return
|
||||||
for fi in file_infos {
|
for fi in file_infos {
|
||||||
temp_allocator := get_temp_allocator(TEMP_ALLOCATOR_GUARD({}))
|
temp_allocator_scope(temp_allocator)
|
||||||
|
|
||||||
dst_path := join_path({dst, fi.name}, temp_allocator) or_return
|
dst_path := join_path({dst, fi.name}, temp_allocator) or_return
|
||||||
src_path := fi.fullpath
|
src_path := fi.fullpath
|
||||||
|
|||||||
@@ -51,8 +51,6 @@ Read_Directory_Iterator_Impl :: struct {
|
|||||||
|
|
||||||
@(require_results)
|
@(require_results)
|
||||||
_read_directory_iterator :: proc(it: ^Read_Directory_Iterator) -> (fi: File_Info, index: int, ok: bool) {
|
_read_directory_iterator :: proc(it: ^Read_Directory_Iterator) -> (fi: File_Info, index: int, ok: bool) {
|
||||||
temp_allocator := get_temp_allocator(TEMP_ALLOCATOR_GUARD({}))
|
|
||||||
|
|
||||||
for !it.impl.no_more_files {
|
for !it.impl.no_more_files {
|
||||||
err: Error
|
err: Error
|
||||||
file_info_delete(it.impl.prev_fi, file_allocator())
|
file_info_delete(it.impl.prev_fi, file_allocator())
|
||||||
|
|||||||
Reference in New Issue
Block a user