| 37 | static const size_t g_trace_indent = 2; |
| 38 | |
| 39 | TraceLog::TraceLog( |
| 40 | const char* file_name): |
| 41 | m_file(file_name, std::ofstream::out | std::ofstream::binary) |
| 42 | { |
| 43 | assert(!g_TraceLog); |
| 44 | g_TraceLog = this; |
| 45 | m_root = new TraceNode("root"); |
| 46 | } |
| 47 | |
| 48 | /* See header for documentation. */ |
| 49 | TraceNode* TraceLog::get_current_leaf() |
nothing calls this directly
no outgoing calls
no test coverage detected