diff options
Diffstat (limited to 'src/rt/rust_task.cpp')
| -rw-r--r-- | src/rt/rust_task.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp index a22b3ebc47a..9868d4f5750 100644 --- a/src/rt/rust_task.cpp +++ b/src/rt/rust_task.cpp @@ -523,13 +523,13 @@ rust_task::malloc(size_t sz, const char *tag, type_desc *td) } void * -rust_task::realloc(void *data, size_t sz, bool is_gc) +rust_task::realloc(void *data, size_t sz) { return local_region.realloc(data, sz); } void -rust_task::free(void *p, bool is_gc) +rust_task::free(void *p) { local_region.free(p); } |
