summaryrefslogtreecommitdiff
path: root/src/gc/gc.h
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-09-11 23:14:00 -0700
committerJan Kotas <jkotas@microsoft.com>2015-09-12 09:07:02 -0700
commitb9e4ab6395587064d99820f33b807abe20124dc2 (patch)
tree8db8c93d9a87f06c8043e68e1875ebdc50a2ff9e /src/gc/gc.h
parent58748f0c50e71aed5ed2a3e35feb0a9eb719eaa6 (diff)
downloadcoreclr-b9e4ab6395587064d99820f33b807abe20124dc2.tar.gz
coreclr-b9e4ab6395587064d99820f33b807abe20124dc2.tar.bz2
coreclr-b9e4ab6395587064d99820f33b807abe20124dc2.zip
Replace unsigned __int64/__int64 with UINT64/INT64
Diffstat (limited to 'src/gc/gc.h')
-rw-r--r--src/gc/gc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gc/gc.h b/src/gc/gc.h
index ae2a7f572b..9eefb512a1 100644
--- a/src/gc/gc.h
+++ b/src/gc/gc.h
@@ -170,8 +170,8 @@ struct alloc_context
BYTE* alloc_ptr;
BYTE* alloc_limit;
- __int64 alloc_bytes; //Number of bytes allocated on SOH by this context
- __int64 alloc_bytes_loh; //Number of bytes allocated on LOH by this context
+ INT64 alloc_bytes; //Number of bytes allocated on SOH by this context
+ INT64 alloc_bytes_loh; //Number of bytes allocated on LOH by this context
#if defined(FEATURE_SVR_GC)
SVR::GCHeap* alloc_heap;
SVR::GCHeap* home_heap;