Namespaces
Variants
Views
Actions

Talk:cpp/utility/variadic/va start

From cppreference.com

[edit] namespace in example

Since <cstdarg> is included (and not <stdarg.h>) in the c++ example code, shouldn't the example code use std::va_list rather than va_list?

-- User:dpelle 12:36, 27 Oktober 2019 (ECT)

No. All va_... are macros.

NickHounsome (talk) 03:19, 28 October 2019 (PDT)

va_list is not a macro, so it should be std:: qualified per house style. Fixed. T. Canens (talk) 06:50, 28 October 2019 (PDT)