Remove unnecessary semicolons
This commit is contained in:
parent
5201e92564
commit
4be81d3588
4 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue