summaryrefslogtreecommitdiff
path: root/src/debug/di/shimdatatarget.h
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-05-23 00:42:43 +0200
committerJan Vorlicek <janvorli@microsoft.com>2015-05-26 15:38:54 +0200
commit90045f8f205c4b91e7804c268e55ae985b1ba4e3 (patch)
tree7ff227204345da95a16d96648066140ad96be50f /src/debug/di/shimdatatarget.h
parent2e7885d43ffbae93891fac2313ac5450be661435 (diff)
downloadcoreclr-90045f8f205c4b91e7804c268e55ae985b1ba4e3.tar.gz
coreclr-90045f8f205c4b91e7804c268e55ae985b1ba4e3.tar.bz2
coreclr-90045f8f205c4b91e7804c268e55ae985b1ba4e3.zip
Fix the virtual destructor warning
This change changes destructors to be virtual or adds virtual ones where they were missing based on the clang warnings.
Diffstat (limited to 'src/debug/di/shimdatatarget.h')
-rw-r--r--src/debug/di/shimdatatarget.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/debug/di/shimdatatarget.h b/src/debug/di/shimdatatarget.h
index a9c467bcec..1fabad4778 100644
--- a/src/debug/di/shimdatatarget.h
+++ b/src/debug/di/shimdatatarget.h
@@ -24,6 +24,8 @@ typedef HRESULT (*FPContinueStatusChanged)(void * pUserData, DWORD dwThreadId, C
class ShimDataTarget : public ICorDebugMutableDataTarget
{
public:
+ virtual ~ShimDataTarget() {}
+
// Allow hooking an implementation for ContinueStatusChanged.
void HookContinueStatusChanged(FPContinueStatusChanged fpContinueStatusChanged, void * pUserData);