| 494 | } |
| 495 | |
| 496 | Color Color::fromString( const char* str ) { |
| 497 | return fromString( std::string( str ) ); |
| 498 | } |
| 499 | |
| 500 | Color Color::fromString( std::string str ) { |
| 501 | std::size_t size = str.size(); |
nothing calls this directly
no test coverage detected