MCPcopy Create free account
hub / github.com/WolfireGames/overgrowth / Format

Method Format

Source/Logging/logdata.cpp:315–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

313}
314
315void LogSystem::LogData::Format(const char* fmt, ...) {
316 char buf[2048];
317 va_list args;
318 va_start(args, fmt);
319 vsnprintf(buf, 2048, fmt, args);
320 va_end(args);
321
322 *this << buf;
323}
324
325LogSystem::LogVoid& operator<<(const LogSystem::LogVoid& data, StandardEndLine obj) {
326 LogSystem::LogVoid& temp = (LogSystem::LogVoid&)data; // unix hack, nab compiler...

Callers 8

buildTileMeshMethod · 0.45
LoadMethod · 0.45
UpdateMethod · 0.45
ASReadCharacterIDFunction · 0.45
LogGlobalVarsMethod · 0.45
PrintTotalMethod · 0.45
PrintFrameMethod · 0.45
DisplayLastQueuedErrorFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected