reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
222 va_start(AP, Format); 223 const int SizeOrError = vsnprintf(nullptr, 0, Format, AP); 224 va_end(AP); 231 va_start(AP, Format); 232 vsnprintf(Str.data(), Size, Format, AP); 233 va_end(AP);