| 65 | public: |
| 66 | template <typename T> |
| 67 | FormatScanArg(T* p) : // NOLINT(runtime/explicit) |
| 68 | m_ptr(p), |
| 69 | m_parse(reinterpret_cast<ParseFunction>(&ScanValueParser<T>::Parse)) |
| 70 | { |
| 71 | } |
| 72 | |
| 73 | int Parse(const char* buf, const ScanSpecification& spec) const; |
| 74 | static int ParseSkipped(const char* string, const ScanSpecification& spec); |
nothing calls this directly
no outgoing calls
no test coverage detected