diff options
Diffstat (limited to 'runtime/gc/heap.h')
-rw-r--r-- | runtime/gc/heap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/heap.h b/runtime/gc/heap.h index 7eafd34525..7a9ef1e3b1 100644 --- a/runtime/gc/heap.h +++ b/runtime/gc/heap.h @@ -358,7 +358,7 @@ class Heap { // Freed bytes can be negative in cases where we copy objects from a compacted space to a // free-list backed space. - void RecordFree(ssize_t freed_objects, ssize_t freed_bytes); + void RecordFree(uint64_t freed_objects, int64_t freed_bytes); // Must be called if a field of an Object in the heap changes, and before any GC safe-point. // The call is not needed if NULL is stored in the field. |