Fix warning no-overloaded-virtual
authorJan Vorlicek <janvorli@microsoft.com>
Mon, 25 May 2015 19:04:31 +0000 (21:04 +0200)
committerJan Vorlicek <janvorli@microsoft.com>
Tue, 26 May 2015 18:35:14 +0000 (20:35 +0200)
commitac80fe431901358305bbc35f11247d1de2f7412f
tree7bc763c0b148adcd6d3a084126f731d2e73e5191
parent4d931ce9e79349733bb74389089b47d600a52fc3
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.
CMakeLists.txt
src/debug/daccess/dacdbiimpl.h
src/inc/metadata.h
src/inc/stgpool.h
src/md/compiler/regmeta.h
src/md/inc/recordpool.h