Move strings in Clara's result type

This commit is contained in:
Martin Hořeňovský 2021-10-29 23:04:24 +02:00
parent 3c5c86a4e4
commit e539e1cb52
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 6 additions and 6 deletions

View File

@ -224,13 +224,13 @@ namespace Catch {
return { ResultType::Ok, value };
}
static auto ok() -> BasicResult { return { ResultType::Ok }; }
static auto logicError( std::string const& message )
static auto logicError( std::string&& message )
-> BasicResult {
return { ResultType::LogicError, message };
return { ResultType::LogicError, CATCH_MOVE(message) };
}
static auto runtimeError( std::string const& message )
static auto runtimeError( std::string&& message )
-> BasicResult {
return { ResultType::RuntimeError, message };
return { ResultType::RuntimeError, CATCH_MOVE(message) };
}
explicit operator bool() const {
@ -256,8 +256,8 @@ namespace Catch {
m_errorMessage; // Only populated if resultType is an error
BasicResult( ResultType type,
std::string const& message ):
ResultValueBase<T>( type ), m_errorMessage( message ) {
std::string&& message ):
ResultValueBase<T>( type ), m_errorMessage( CATCH_MOVE(message) ) {
assert( m_type != ResultType::Ok );
}