
30 Apr
2005
30 Apr
'05
10:46 a.m.
Edward Diener wrote:
void test() { std::va_list avar; }
isn't "va_list" a C macro? If it is, then it does not belong to any namespace. Following compiles for me (como 4.3.3 strict mode + vc7.1): #include <cstdarg> void test(...) {va_list avar;} int main() {test(1);} Regards B.