MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-ValidationLayers / Format

Function Format

layers/utils/text_utils.cpp:52–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50}
51
52std::string Format(const char* format, ...) {
53 va_list argptr;
54 va_start(argptr, format);
55 std::string str = VFormat(format, argptr);
56 va_end(argptr);
57 return str;
58}
59
60void ToLower(std::string& str) {
61 // std::tolower() returns int which can cause compiler warnings

Callers

nothing calls this directly

Calls 1

VFormatFunction · 0.85

Tested by

no test coverage detected