summaryrefslogtreecommitdiff
path: root/src/vm/object.inl
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-03-08 00:41:21 -0800
committerJan Kotas <jkotas@microsoft.com>2016-03-09 08:46:07 -0800
commit618e798e3ba00e8b95158fd1d7081ca91cc43bf5 (patch)
tree091b7e7719d83d7408d623c82a3deaeca96e67ed /src/vm/object.inl
parentb219fbbe1fe72b4a44b5247c9a77f9447d34b028 (diff)
downloadcoreclr-618e798e3ba00e8b95158fd1d7081ca91cc43bf5.tar.gz
coreclr-618e798e3ba00e8b95158fd1d7081ca91cc43bf5.tar.bz2
coreclr-618e798e3ba00e8b95158fd1d7081ca91cc43bf5.zip
Delete dead code
- Delete BINDER, STANDALONE_BINDER and MDIL ifdefs
Diffstat (limited to 'src/vm/object.inl')
-rw-r--r--src/vm/object.inl5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/vm/object.inl b/src/vm/object.inl
index 9c24f551c9..5698321993 100644
--- a/src/vm/object.inl
+++ b/src/vm/object.inl
@@ -13,7 +13,6 @@
#include "object.h"
-#if !defined(BINDER)
inline PTR_VOID Object::UnBox() // if it is a value class, get the pointer to the first field
{
LIMITED_METHOD_DAC_CONTRACT;
@@ -174,7 +173,6 @@ inline DWORD ArrayBase::GetNumComponents() const
SUPPORTS_DAC;
return m_NumComponents;
}
-#endif //!BINDER
inline /* static */ unsigned ArrayBase::GetDataPtrOffset(MethodTable* pMT)
{
@@ -208,7 +206,6 @@ inline /* static */ unsigned ArrayBase::GetLowerBoundsOffset(MethodTable* pMT)
dac_cast<PTR_ArrayClass>(pMT->GetClass())->GetRank() *
sizeof(INT32);
}
-#ifndef BINDER
// Get the element type for the array, this works whether the the element
// type is stored in the array or not
@@ -301,6 +298,4 @@ inline TypeHandle Object::GetGCSafeTypeHandle() const
return TypeHandle(pMT);
}
-#endif //!BINDER
-
#endif // _OBJECT_INL_