On Thu, Mar 1, 2012 at 11:50 PM, Jean-Daniel Dupas <[email protected]> wrote: > It does not solve the "do not use identifier that can conflict with > legitimate user macros" issue. > > --------------- > #define cxx_noexpect noexcept() > > #if __has_feature(__cxx_noexpect__) || __has_feature(cxx_noexpect) > > #endif > ---------------
We could make a variant of this work if we really wanted to using #if defined(cxx_noexcept) or something like that. Not sure if it's worthwhile, though. -Eli _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
