$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Bronek Kozicki (brok_at_[hidden])
Date: 2005-04-30 05:46:36
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.