| 14 | class Color : public ::Color { |
| 15 | public: |
| 16 | constexpr Color(const ::Color& color) : ::Color{color.r, color.g, color.b, color.a} {} |
| 17 | |
| 18 | constexpr Color(unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha = 255) |
| 19 | : ::Color{red, green, blue, alpha} {}; |
nothing calls this directly
no outgoing calls
no test coverage detected