summaryrefslogtreecommitdiff
path: root/src/debug/di
diff options
context:
space:
mode:
authorAndrew Wang <waan@microsoft.com>2018-08-01 18:53:21 -0700
committerAndrew Au <cshung@gmail.com>2018-11-06 18:34:47 -0800
commit44f9453071131406569ea6167baf494b2ab11926 (patch)
tree6c09db17754418ad23633ce04891270147cbede2 /src/debug/di
parente4d8496b0679f09791c4bfd889b215abef542b59 (diff)
downloadcoreclr-44f9453071131406569ea6167baf494b2ab11926.tar.gz
coreclr-44f9453071131406569ea6167baf494b2ab11926.tar.bz2
coreclr-44f9453071131406569ea6167baf494b2ab11926.zip
Fix collision with ICorDebugProcess9 to 10
Diffstat (limited to 'src/debug/di')
-rw-r--r--src/debug/di/process.cpp4
-rw-r--r--src/debug/di/rspriv.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/debug/di/process.cpp b/src/debug/di/process.cpp
index 0b6c582f67..99e5aa4ede 100644
--- a/src/debug/di/process.cpp
+++ b/src/debug/di/process.cpp
@@ -2175,9 +2175,9 @@ HRESULT CordbProcess::QueryInterface(REFIID id, void **pInterface)
{
*pInterface = static_cast<ICorDebugProcess8*>(this);
}
- else if (id == IID_ICorDebugProcess9)
+ else if (id == IID_ICorDebugProcess10)
{
- *pInterface = static_cast<ICorDebugProcess9*>(this);
+ *pInterface = static_cast<ICorDebugProcess10*>(this);
}
#ifdef FEATURE_LEGACYNETCF_DBG_HOST_CONTROL
else if (id == IID_ICorDebugLegacyNetCFHostCallbackInvoker_PrivateWindowsPhoneOnly)
diff --git a/src/debug/di/rspriv.h b/src/debug/di/rspriv.h
index 86df87aaae..d0a10bed64 100644
--- a/src/debug/di/rspriv.h
+++ b/src/debug/di/rspriv.h
@@ -2923,7 +2923,7 @@ class CordbProcess :
public ICorDebugProcess5,
public ICorDebugProcess7,
public ICorDebugProcess8,
- public ICorDebugProcess9,
+ public ICorDebugProcess10,
public IDacDbiInterface::IAllocator,
public IDacDbiInterface::IMetaDataLookup,
public IProcessShimHooks
@@ -3136,7 +3136,7 @@ public:
COM_METHOD EnableExceptionCallbacksOutsideOfMyCode(BOOL enableExceptionsOutsideOfJMC);
//-----------------------------------------------------------
- // ICorDebugProcess9
+ // ICorDebugProcess10
//-----------------------------------------------------------
COM_METHOD GetContainingObject(CORDB_ADDRESS interiorPointer, ICorDebugObjectValue** ppContainingObject);