Added space in StringRef literal operator

This commit is contained in:
Phil Nash 2017-11-21 12:09:04 +00:00
parent e4a898eaaa
commit e54dcdac8b
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ namespace Catch {
auto operator << ( std::ostream& os, StringRef const& sr ) -> std::ostream&;
inline auto operator ""_sr( char const* rawChars, std::size_t size ) noexcept -> StringRef {
inline auto operator "" _sr( char const* rawChars, std::size_t size ) noexcept -> StringRef {
return StringRef( rawChars, size );
}