We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 053478b commit ba94646Copy full SHA for ba94646
libcxx/docs/UsingLibcxx.rst
@@ -187,7 +187,7 @@ and ``operator delete``. For example:
187
#include <version> // must include any libc++ header before defining the function (C compatibility headers excluded)
188
189
void std::__libcpp_verbose_abort(char const* format, ...) {
190
- va_list list;
+ std::va_list list;
191
va_start(list, format);
192
std::vfprintf(stderr, format, list);
193
va_end(list);
0 commit comments