[libc++][NFC] Qualify mention of va_list with std:: in documentation
This commit is contained in:
parent
053478bbd0
commit
ba94646c76
@ -187,7 +187,7 @@ and ``operator delete``. For example:
|
|||||||
#include <version> // must include any libc++ header before defining the function (C compatibility headers excluded)
|
#include <version> // must include any libc++ header before defining the function (C compatibility headers excluded)
|
||||||
|
|
||||||
void std::__libcpp_verbose_abort(char const* format, ...) {
|
void std::__libcpp_verbose_abort(char const* format, ...) {
|
||||||
va_list list;
|
std::va_list list;
|
||||||
va_start(list, format);
|
va_start(list, format);
|
||||||
std::vfprintf(stderr, format, list);
|
std::vfprintf(stderr, format, list);
|
||||||
va_end(list);
|
va_end(list);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user