mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-26 23:36:11 +01:00
Use StringRef literal for unknown enum values instead of string lit
This commit is contained in:
parent
dd1f0f1c72
commit
fbbaadb704
@ -36,7 +36,7 @@ namespace Catch {
|
|||||||
if( valueToName.first == value )
|
if( valueToName.first == value )
|
||||||
return valueToName.second;
|
return valueToName.second;
|
||||||
}
|
}
|
||||||
return "{** unexpected enum value **}";
|
return "{** unexpected enum value **}"_sr;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<EnumInfo> makeEnumInfo( StringRef enumName, StringRef allValueNames, std::vector<int> const& values ) {
|
std::unique_ptr<EnumInfo> makeEnumInfo( StringRef enumName, StringRef allValueNames, std::vector<int> const& values ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user