MCPcopy Create free account
hub / github.com/apache/brpc / StringAppendVTestHelper

Function StringAppendVTestHelper

test/stringprintf_unittest.cc:19–24  ·  view source on GitHub ↗

A helper for the StringAppendV test that follows. Just forwards its args to StringAppendV.

Source from the content-addressed store, hash-verified

17//
18// Just forwards its args to StringAppendV.
19static void StringAppendVTestHelper(std::string* out, const char* format, ...) {
20 va_list ap;
21 va_start(ap, format);
22 StringAppendV(out, format, ap);
23 va_end(ap);
24}
25
26} // namespace
27

Callers 1

TESTFunction · 0.85

Calls 1

StringAppendVFunction · 0.85

Tested by

no test coverage detected