MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / StringFormat

Method StringFormat

LuaSTGPlus/Utility.cpp:6–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4using namespace LuaSTGPlus;
5
6std::string LuaSTGPlus::StringFormat(const char* Format, ...)LNOEXCEPT
7{
8 va_list vaptr;
9 va_start(vaptr, Format);
10 std::string tRet = std::move(StringFormatV(Format, vaptr));
11 va_end(vaptr);
12 return std::move(tRet);
13}
14
15std::string LuaSTGPlus::StringFormatV(const char* Format, va_list vaptr)LNOEXCEPT
16{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected