mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-17 11:12:25 +01:00
Remove unused constructor in test code to eliminate warning
This commit is contained in:
parent
36cd85acbe
commit
3984473e26
@ -346,9 +346,9 @@ public:
|
|||||||
ColourString( std::string const& _string )
|
ColourString( std::string const& _string )
|
||||||
: string( _string )
|
: string( _string )
|
||||||
{}
|
{}
|
||||||
ColourString( std::string const& _string, std::vector<ColourIndex> const& _colours )
|
// ColourString( std::string const& _string, std::vector<ColourIndex> const& _colours )
|
||||||
: string( _string ), colours( _colours )
|
// : string( _string ), colours( _colours )
|
||||||
{}
|
// {}
|
||||||
|
|
||||||
ColourString& addColour( Colour::Code colour, int _index ) {
|
ColourString& addColour( Colour::Code colour, int _index ) {
|
||||||
colours.push_back( ColourIndex( colour,
|
colours.push_back( ColourIndex( colour,
|
||||||
|
Loading…
Reference in New Issue
Block a user