Valgrind: Modernize

modernize-*

Change-Id: I6db60dce78cf2575e36caa597b1f095adba34fd9
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Alessandro Portale
2018-12-10 08:11:18 +01:00
parent 390a227df6
commit 00ec6dfb5d
53 changed files with 182 additions and 294 deletions

View File

@@ -50,7 +50,7 @@ namespace {
: m_message(message)
{}
~ParserException() throw() {}
~ParserException() noexcept = default;
QString message() const { return m_message; }
@@ -60,23 +60,21 @@ namespace {
struct XWhat
{
XWhat() : leakedblocks(0), leakedbytes(0), hthreadid(-1) {}
QString text;
qint64 leakedblocks;
qint64 leakedbytes;
qint64 hthreadid;
qint64 leakedblocks = 0;
qint64 leakedbytes = 0;
qint64 hthreadid = -1;
};
struct XauxWhat
{
XauxWhat() : line(-1), hthreadid(-1) {}
void clear() { *this = XauxWhat(); }
QString text;
QString file;
QString dir;
qint64 line;
qint64 hthreadid;
qint64 line = -1;
qint64 hthreadid = -1;
};
} // namespace anon
@@ -215,7 +213,7 @@ QXmlStreamReader::TokenType Parser::Private::blockingReadNext()
// ...so we fall back to knowing it might be a QAbstractSocket.
QIODevice *dev = reader.device();
QAbstractSocket *sock = qobject_cast<QAbstractSocket *>(dev);
auto sock = qobject_cast<const QAbstractSocket *>(dev);
if (!sock || sock->state() != QAbstractSocket::ConnectedState)
throw ParserException(dev->errorString());