Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-11-01 02:03:17 +0300
committerJan Kotas <jkotas@microsoft.com>2015-11-01 02:14:33 +0300
commitd97883d93382dd0282b2062861d7e9e325fc947a (patch)
tree1a93ad04bb039792199b5dac07de00a4ce2209d0 /src/Native/Runtime/ObjectLayout.h
parentbd25772627e0b05a367688bfe53e1790ff3d7e48 (diff)
Fix build breaks after GC update
Diffstat (limited to 'src/Native/Runtime/ObjectLayout.h')
-rw-r--r--src/Native/Runtime/ObjectLayout.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Native/Runtime/ObjectLayout.h b/src/Native/Runtime/ObjectLayout.h
index b16ebfdf9..756324dbd 100644
--- a/src/Native/Runtime/ObjectLayout.h
+++ b/src/Native/Runtime/ObjectLayout.h
@@ -64,13 +64,13 @@ public:
//
MethodTable * RawGetMethodTable() const
{
- return (MethodTable*)m_pEEType;
+ return (MethodTable*)get_EEType();
}
- void RawSetMethodTable(MethodTable * pMT)
+ MethodTable * GetGCSafeMethodTable() const
{
- m_pEEType = (EEType *)pMT;
+ return (MethodTable *)get_SafeEEType();
}
- void SetMethodTable(MethodTable * pMT)
+ void RawSetMethodTable(MethodTable * pMT)
{
m_pEEType = (EEType *)pMT;
}