Home | History | Annotate | Download | only in Preprocessor

Lines Matching full:warning

7 #define zero_dot(...) 0   /* expected-warning {{variadic macros are a C99 feature}} */
8 #define one_dot(x, ...) 0 /* expected-warning {{variadic macros are a C99 feature}} expected-note 2{{macro 'one_dot' defined here}} */
17 expected-warning {{empty macro arguments are a C99 feature}}*/
23 two(a, ) /* expected-warning {{empty macro arguments are a C99 feature}} */
26 , /* expected-warning {{empty macro arguments are a C99 feature}} */
27 , /* expected-warning {{empty macro arguments are a C99 feature}} \
29 ) /* expected-warning {{empty macro arguments are a C99 feature}} */
30 two(,) /* expected-warning 2 {{empty macro arguments are a C99 feature}} */
35 #define e(...) __VA_ARGS__ /* expected-warning {{variadic macros are a C99 feature}} */
40 one_dot(x) /* empty ... argument: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
41 one_dot() /* empty first argument, elided ...: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
51 #define NSAssert(condition, desc, ...) /* expected-warning {{variadic macros are a C99 feature}} */ \
52 SomeComplicatedStuff((desc), ##__VA_ARGS__) /* expected-warning {{token pasting of ',' and __VA_ARGS__ is a GNU extension}} */