mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-08 03:24:19 +00:00
Merge pull request #375 from Zilarrezko/master
make_builder function now properly uses given allocator
This commit is contained in:
@@ -9,7 +9,7 @@ Builder :: struct {
|
||||
}
|
||||
|
||||
make_builder :: proc(allocator := context.allocator) -> Builder {
|
||||
return Builder{make([dynamic]byte)};
|
||||
return Builder{make([dynamic]byte, allocator)};
|
||||
}
|
||||
|
||||
destroy_builder :: proc(b: ^Builder) {
|
||||
|
||||
Reference in New Issue
Block a user