| 54 | //----------------------------------------------------------------------------- |
| 55 | |
| 56 | inline void FPrintf(const char* fmt, const auto&... args) |
| 57 | { |
| 58 | if constexpr(0 < (sizeof...(args))) { |
| 59 | fprintf(stderr, fmt, Normalize(args)...); |
| 60 | } else { |
| 61 | fprintf(stderr, "%s", fmt); |
| 62 | } |
| 63 | } |
| 64 | //----------------------------------------------------------------------------- |
| 65 | |
| 66 | } // namespace details |