| 41 | } // anonymous namespace |
| 42 | |
| 43 | std::string Utils::ssprintf(const char* fmt, ...) { |
| 44 | va_list ap; |
| 45 | va_start(ap, fmt); |
| 46 | auto rst = svsprintf(fmt, ap); |
| 47 | va_end(ap); |
| 48 | return rst; |
| 49 | } |
| 50 | |
| 51 | std::string Utils::DtypeHelper::max() { |
| 52 | switch (m_dtype) { |
nothing calls this directly
no test coverage detected