Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(413)

Unified Diff: src/heap/gc-tracer.h

Issue 2395563002: [heap] Use size_t throughout MemoryAllocator (Closed)
Patch Set: Fix compilation Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/heap/gc-tracer.h
diff --git a/src/heap/gc-tracer.h b/src/heap/gc-tracer.h
index 21004f60e7b61666f9433d93e75ab9bfa0ea375f..e8c72c1e2c36037167ab2f7d1d21b81fa6545a41 100644
--- a/src/heap/gc-tracer.h
+++ b/src/heap/gc-tracer.h
@@ -221,10 +221,10 @@ class GCTracer {
intptr_t end_object_size;
// Size of memory allocated from OS set in constructor.
- intptr_t start_memory_size;
+ size_t start_memory_size;
// Size of memory allocated from OS set in destructor.
- intptr_t end_memory_size;
+ size_t end_memory_size;
// Total amount of space either wasted or contained in one of free lists
// before the current GC.
« no previous file with comments | « src/extensions/statistics-extension.cc ('k') | src/heap/heap.cc » ('j') | src/heap/spaces.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698