On 07/10/2010 03:56 PM, Ian Lance Taylor wrote:
Sean Hunt writes:
void foo () __attribute__((noreturn)); // right per spec
void foo __attribute__((noreturn)) (); // works
__attribute__((noreturn)) void foo (); // works
It's obvious that the first example of each kind (nor
Hey GCC devs,
My name is Sean Hunt and I'm currently refactoring the
attribute-handling system in clang, in order to better support C++0x[1]
attributes and make attributes in general much easier to follows. One of
the major issues I'm having is that there are a number of c