| 372 | |
| 373 | template <typename T> |
| 374 | Expected<void> parseAscCoordinate( const std::string_view& str, Vector3<T>& v, Vector3<T>* n, Color* c ) |
| 375 | { |
| 376 | return parseTextCoordinate( str, v, n, c ); |
| 377 | } |
| 378 | |
| 379 | template Expected<void> parseSingleNumber<float>( const std::string_view& str, float& num ); |
| 380 | template Expected<void> parseSingleNumber<int>( const std::string_view& str, int& num ); |
nothing calls this directly
no test coverage detected