Clang warnings.
--HG-- branch : develop
This commit is contained in:
parent
96b2d644e1
commit
3347d0ad77
|
@ -60,6 +60,5 @@ VExceptionConversionError::~VExceptionConversionError() V_NOEXCEPT_EXPR (true)
|
|||
*/
|
||||
QString VExceptionConversionError::ErrorMessage() const
|
||||
{
|
||||
QString error = QString("ExceptionConversionError: %1 \"%2\"").arg(error, str);
|
||||
return error;
|
||||
return QString("ExceptionConversionError: %1 \"%2\"").arg(error, str);
|
||||
}
|
||||
|
|
|
@ -69,8 +69,7 @@ VExceptionEmptyParameter::~VExceptionEmptyParameter() V_NOEXCEPT_EXPR (true)
|
|||
*/
|
||||
QString VExceptionEmptyParameter::ErrorMessage() const
|
||||
{
|
||||
QString error = QString("ExceptionEmptyParameter: %1 %2").arg(error, name);
|
||||
return error;
|
||||
return QString("ExceptionEmptyParameter: %1 %2").arg(error, name);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
|
|
|
@ -62,8 +62,7 @@ VExceptionObjectError::VExceptionObjectError(const VExceptionObjectError &e)
|
|||
*/
|
||||
QString VExceptionObjectError::ErrorMessage() const
|
||||
{
|
||||
QString error = QString("ExceptionObjectError: %1").arg(error);
|
||||
return error;
|
||||
return QString("ExceptionObjectError: %1").arg(error);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
|
|
|
@ -62,8 +62,7 @@ VExceptionWrongId::VExceptionWrongId(const VExceptionWrongId &e)
|
|||
*/
|
||||
QString VExceptionWrongId::ErrorMessage() const
|
||||
{
|
||||
QString error = QString("ExceptionWrongId: %1").arg(error);
|
||||
return error;
|
||||
return QString("ExceptionWrongId: %1").arg(error);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue
Block a user