summaryrefslogtreecommitdiff
path: root/src/vm/qcall.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/qcall.h')
-rw-r--r--src/vm/qcall.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/vm/qcall.h b/src/vm/qcall.h
index 3ad328a2e1..dd60bbb158 100644
--- a/src/vm/qcall.h
+++ b/src/vm/qcall.h
@@ -237,35 +237,6 @@ public:
}
};
- // AppDomainHandle is used for passing AppDomains into QCalls via System.AppDomainHandle
- struct AppDomainHandle
- {
- AppDomain *m_pAppDomain;
-
- operator AppDomain *()
- {
- LIMITED_METHOD_CONTRACT;
-#ifdef _DEBUG
- VerifyDomainHandle();
-#endif // _DEBUG
- return m_pAppDomain;
- }
-
- AppDomain *operator->() const
- {
- LIMITED_METHOD_CONTRACT;
-#ifdef _DEBUG
- VerifyDomainHandle();
-#endif // _DEBUG
- return m_pAppDomain;
- }
-
- private:
-#ifdef _DEBUG
- void VerifyDomainHandle() const;
-#endif // _DEBUG
- };
-
struct AssemblyHandle
{
DomainAssembly * m_pAssembly;