It must be something specific in my code, which I can\'t post. But maybe someone can suggest possible causes.
Basically I have:
class CParent { publ
You are hitting a classic problem. You need using CParent::doIt; in your CChild class. I'll scrounge up the duplicate questions.
using CParent::doIt;
Edit:
Here's my answer to essentially the same question: Overriding a Base's Overloaded Function in C++