Question
_Noreturn is reported as a syntax error
A syntax error is reported against the _Noreturn specified when a function is declared _Noreturn:
_Noreturn void doesNotReturn( void )
{
while ( 1 ) ;
}The compiler has been configured for C18 and the code compiles.
Can I get this to be accepted by changing a setting, or does this require an update to the Eclipse version used by the IDE?
