| 139 | // Non-specialized repr is same as str |
| 140 | template <class T> |
| 141 | static std::string |
| 142 | color3_repr(const Color3<T> &v) |
| 143 | { |
| 144 | return color3_str(v); |
| 145 | } |
| 146 | |
| 147 | // Specialization for float to full precision |
| 148 | template <> |
nothing calls this directly
no test coverage detected