| 33 | #ifdef EP_DEBUG_AUTOBATTLE |
| 34 | template <typename... Args> |
| 35 | static void DebugLog(const char* fmt, Args&&... args) { |
| 36 | Output::Debug(fmt, std::forward<Args>(args)...); |
| 37 | } |
| 38 | #else |
| 39 | template <typename... Args> |
| 40 | static void DebugLog(const char*, Args&&...) {} |
no outgoing calls
no test coverage detected