D | c99-intconst-1.c | 41 #define first_of2p(T1, E1, T2, E2) type_comb2(type_if(T1, (E1)), \ argument 42 type_if(T2, (!(E1) && (E2)))) 44 #define first_of3p(T1, E1, T2, E2, T3, E3) \ argument 45 type_comb3(type_if(T1, (E1)), \ 46 type_if(T2, (!(E1) && (E2))), \ 47 type_if(T3, (!(E1) && !(E2) && (E3)))) 50 #define first_of4p(T1, E1, T2, E2, T3, E3, T4, E4) \ argument 51 type_comb4(type_if(T1, (E1)), \ 52 type_if(T2, (!(E1) && (E2))), \ 53 type_if(T3, (!(E1) && !(E2) && (E3))), \ [all …]
|