| 23716 | //----------------------------------------------------------------------------- |
| 23717 | |
| 23718 | void ImGui::DebugLog(const char* fmt, ...) |
| 23719 | { |
| 23720 | va_list args; |
| 23721 | va_start(args, fmt); |
| 23722 | DebugLogV(fmt, args); |
| 23723 | va_end(args); |
| 23724 | } |
| 23725 | |
| 23726 | void ImGui::DebugLogV(const char* fmt, va_list args) |
| 23727 | { |
nothing calls this directly
no outgoing calls
no test coverage detected