
15 Feb
2010
15 Feb
'10
9:43 p.m.
On 15 February 2010 13:14, vicente.botet <vicente.botet@wanadoo.fr> wrote:
What do you think of including all the deprecated macros on config_deprecated.hpp file and force all the files using of the deprecated macros to use the new file (this seems less intrusive that forcing them to use the non deprecated macros). This new file could include also a #deprecated pagma so a warning will appear.
That sounds like a bad idea to me, all you'll do is disable C++0x support in libraries that use the deprecated macros (since they're all checked using #ifdef). Better to just search for the macros and change them. Do we have a list of the deprecated macros? Daniel