Turn UseColour into enum class

This commit is contained in:
Martin Hořeňovský 2020-08-11 15:50:51 +02:00
parent b0531404e4
commit aa28a917cb
No known key found for this signature in database
GPG key ID: DE48307B8B0D381A
4 changed files with 8 additions and 8 deletions

View file

@ -46,7 +46,7 @@ namespace Catch {
ShowDurations showDurations = ShowDurations::DefaultForReporter;
double minDuration = -1;
TestRunOrder runOrder = TestRunOrder::Declared;
UseColour::YesOrNo useColour = UseColour::Auto;
UseColour useColour = UseColour::Auto;
WaitForKeypress::When waitForKeypress = WaitForKeypress::Never;
std::string outputFilename;
@ -98,7 +98,7 @@ namespace Catch {
double minDuration() const override;
TestRunOrder runOrder() const override;
unsigned int rngSeed() const override;
UseColour::YesOrNo useColour() const override;
UseColour useColour() const override;
bool shouldDebugBreak() const override;
int abortAfter() const override;
bool showInvisibles() const override;