mirror of
https://github.com/catchorg/Catch2.git
synced 2025-10-17 23:55:39 +02:00
Added StringRef constructor that captures string literal size at compile time
This commit is contained in:
@@ -16,6 +16,11 @@
|
||||
#include <ostream>
|
||||
|
||||
namespace Catch {
|
||||
auto StringRef::fromRaw( char const* rawChars ) -> StringRef {
|
||||
return rawChars
|
||||
? StringRef( rawChars,static_cast<StringRef::size_type>(std::strlen(rawChars) ) )
|
||||
: StringRef();
|
||||
}
|
||||
|
||||
StringRef::operator std::string() const {
|
||||
return std::string( m_start, m_size );
|
||||
|
Reference in New Issue
Block a user