Skip to content

Commit ba94646

Browse files
committed
[libc++][NFC] Qualify mention of va_list with std:: in documentation
1 parent 053478b commit ba94646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/docs/UsingLibcxx.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ and ``operator delete``. For example:
187187
#include <version> // must include any libc++ header before defining the function (C compatibility headers excluded)
188188
189189
void std::__libcpp_verbose_abort(char const* format, ...) {
190-
va_list list;
190+
std::va_list list;
191191
va_start(list, format);
192192
std::vfprintf(stderr, format, list);
193193
va_end(list);

0 commit comments

Comments
 (0)