mirror of
https://github.com/catchorg/Catch2.git
synced 2025-09-16 10:05:39 +02:00
Remove unnecessary semicolons
This commit is contained in:

committed by
Martin Hořeňovský

parent
5201e92564
commit
4be81d3588
@@ -63,11 +63,11 @@ namespace Catch {
|
||||
template<typename T>
|
||||
typename std::enable_if<!std::is_enum<T>::value, std::string>::type convertUnstreamable( T const& ) {
|
||||
return Detail::unprintableString;
|
||||
};
|
||||
}
|
||||
template<typename T>
|
||||
typename std::enable_if<std::is_enum<T>::value, std::string>::type convertUnstreamable( T const& value ) {
|
||||
return convertUnknownEnumToString( value );
|
||||
};
|
||||
}
|
||||
|
||||
} // namespace Detail
|
||||
|
||||
|
Reference in New Issue
Block a user