Thiago Macieira wrote: > If you want to remove an override (so long as it's not a virtual one), I'd do > an #ifdef and have a special file that sets the define. > > #ifdef MYCLASS_INCLUDE_DEPRECATED > static void whatever(int mode); > #endif I guess that'd work, thanks :) R.