1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-04-03 17:14:47 +02:00

Add some constexpr in compact reporter impl

This commit is contained in:
Martin Hořeňovský 2021-05-29 13:49:33 +02:00
parent c9027375a3
commit 2c04850f88
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A

@ -19,9 +19,9 @@
namespace {
// Colour::LightGrey
Catch::Colour::Code dimColour() { return Catch::Colour::FileName; }
constexpr Catch::Colour::Code dimColour() { return Catch::Colour::FileName; }
Catch::StringRef bothOrAll( std::size_t count ) {
constexpr Catch::StringRef bothOrAll( std::size_t count ) {
switch (count) {
case 1:
return Catch::StringRef{};