| 4 | using namespace LuaSTGPlus; |
| 5 | |
| 6 | std::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 | |
| 15 | std::string LuaSTGPlus::StringFormatV(const char* Format, va_list vaptr)LNOEXCEPT |
| 16 | { |
nothing calls this directly
no outgoing calls
no test coverage detected