| 3148 | } |
| 3149 | |
| 3150 | void Platform::MessageF(MessageType type, const char *_ecv_array fmt, ...) noexcept |
| 3151 | { |
| 3152 | va_list vargs; |
| 3153 | va_start(vargs, fmt); |
| 3154 | MessageV(nullptr, type, fmt, vargs); |
| 3155 | va_end(vargs); |
| 3156 | } |
| 3157 | |
| 3158 | void Platform::MessageF(const GCodeBuffer *_ecv_null gb, MessageType type, const char *_ecv_array fmt, ...) noexcept |
| 3159 | { |
no outgoing calls
no test coverage detected