01-12-2016, 04:37 PM
Here's another case that seems like a violation by the current formulation of 8-4-4 (though it clearly shouldn't be):
class DerivedClass : private BaseClass
{
public:
using BaseClass::getValue; // 8.4.4 violation?
};
class DerivedClass : private BaseClass
{
public:
using BaseClass::getValue; // 8.4.4 violation?
};
<t></t>