i'm trying to implement a interface in c++ using visual studio 2012.
but i'm getting a weird error, the code does compile but it also gives me this error.
IntelliSense: declaration is incompatible with "void Child::OverrideMe()" (declared at line 17)
IntelliSense: explicit type is missing ('int' assumed)
so i was wondering why.
i have 2 code samples one that works and one that does not.
In my opinion it is a bug of the compiler. Though it decided that int will be assumed (explicit type is missing ('int' assumed)) it shall not compile the function because a qualified name is used.