Does it make any difference whether I place the virtual
keyword in a function declaration before or after the return value type?
virtual void DoSomething() = 0;
void virtual DoSomething() = 0;
Found the void virtual
syntax while refactoring some legacy code, and was wondering that it is compiling at all...