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 VExceptionConversionError::ErrorMessage() const
|
||||||
{
|
{
|
||||||
QString error = QString("ExceptionConversionError: %1 \"%2\"").arg(error, str);
|
return QString("ExceptionConversionError: %1 \"%2\"").arg(error, str);
|
||||||
return error;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,8 +69,7 @@ VExceptionEmptyParameter::~VExceptionEmptyParameter() V_NOEXCEPT_EXPR (true)
|
||||||
*/
|
*/
|
||||||
QString VExceptionEmptyParameter::ErrorMessage() const
|
QString VExceptionEmptyParameter::ErrorMessage() const
|
||||||
{
|
{
|
||||||
QString error = QString("ExceptionEmptyParameter: %1 %2").arg(error, name);
|
return QString("ExceptionEmptyParameter: %1 %2").arg(error, name);
|
||||||
return error;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -62,8 +62,7 @@ VExceptionObjectError::VExceptionObjectError(const VExceptionObjectError &e)
|
||||||
*/
|
*/
|
||||||
QString VExceptionObjectError::ErrorMessage() const
|
QString VExceptionObjectError::ErrorMessage() const
|
||||||
{
|
{
|
||||||
QString error = QString("ExceptionObjectError: %1").arg(error);
|
return QString("ExceptionObjectError: %1").arg(error);
|
||||||
return error;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -62,8 +62,7 @@ VExceptionWrongId::VExceptionWrongId(const VExceptionWrongId &e)
|
||||||
*/
|
*/
|
||||||
QString VExceptionWrongId::ErrorMessage() const
|
QString VExceptionWrongId::ErrorMessage() const
|
||||||
{
|
{
|
||||||
QString error = QString("ExceptionWrongId: %1").arg(error);
|
return QString("ExceptionWrongId: %1").arg(error);
|
||||||
return error;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue
Block a user