| 206 | |
| 207 | template <typename DType> |
| 208 | inline void TypedScanner<DType>::FormatValue(void* val, char* buffer, int bufsize, |
| 209 | int width) { |
| 210 | std::string fmt = format_fwf<DType>(width); |
| 211 | snprintf(buffer, bufsize, fmt.c_str(), *reinterpret_cast<T*>(val)); |
| 212 | } |
| 213 | |
| 214 | template <> |
| 215 | inline void TypedScanner<Int96Type>::FormatValue(void* val, char* buffer, int bufsize, |
no test coverage detected