summaryrefslogtreecommitdiff
path: root/src/debug/daccess
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-05-25 21:04:31 +0200
committerJan Vorlicek <janvorli@microsoft.com>2015-05-26 20:35:14 +0200
commitac80fe431901358305bbc35f11247d1de2f7412f (patch)
tree7bc763c0b148adcd6d3a084126f731d2e73e5191 /src/debug/daccess
parent4d931ce9e79349733bb74389089b47d600a52fc3 (diff)
downloadcoreclr-ac80fe431901358305bbc35f11247d1de2f7412f.tar.gz
coreclr-ac80fe431901358305bbc35f11247d1de2f7412f.tar.bz2
coreclr-ac80fe431901358305bbc35f11247d1de2f7412f.zip
Fix warning no-overloaded-virtual
This warning is issued when a derived class defines a virtual method with the same name as its base class, but different set of parameters. The base class virtual method is hidden in that case. Clang issues a warning here. To fix the warning, I have added "using Base::Method" to the private section of all the derived classes.
Diffstat (limited to 'src/debug/daccess')
-rw-r--r--src/debug/daccess/dacdbiimpl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/debug/daccess/dacdbiimpl.h b/src/debug/daccess/dacdbiimpl.h
index ab9cab54fa..7da45e63de 100644
--- a/src/debug/daccess/dacdbiimpl.h
+++ b/src/debug/daccess/dacdbiimpl.h
@@ -642,6 +642,9 @@ public:
// CordbAssembly, CordbModule
// ============================================================================
+ using ClrDataAccess::GetModuleData;
+ using ClrDataAccess::GetAddressType;
+
public:
// Get the full path and file name to the assembly's manifest module.
BOOL GetAssemblyPath(VMPTR_Assembly vmAssembly,