| 226 | |
| 227 | template <typename T> |
| 228 | BitmapColor<T>::BitmapColor() : r(0), g(0), b(0) {} |
| 229 | |
| 230 | template <typename T> |
| 231 | BitmapColor<T>::BitmapColor(const T gray) : r(gray), g(gray), b(gray) {} |
nothing calls this directly
no outgoing calls
no test coverage detected