I have a method in an interface that I want to deprecate with portable C++.
When I Googled for this all I got was a Microsoft specific solution; #pragma deprecated and __declspec(deprecated).
A second prize solution would be to ifdef a MSVC and a GCC solution.