mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-02-16 02:30:52 +00:00
Replace assert() with Q_ASSERT()
This commit is contained in:
@@ -118,8 +118,8 @@ IdentityManager::IdentityManager()
|
|||||||
BIO_free(biocert);
|
BIO_free(biocert);
|
||||||
|
|
||||||
// Ensure we can actually consume the keys we just wrote
|
// Ensure we can actually consume the keys we just wrote
|
||||||
assert(!QSslCertificate(m_CachedPemCert).isNull());
|
Q_ASSERT(!QSslCertificate(m_CachedPemCert).isNull());
|
||||||
assert(!QSslKey(m_CachedPrivateKey, QSsl::Rsa).isNull());
|
Q_ASSERT(!QSslKey(m_CachedPrivateKey, QSsl::Rsa).isNull());
|
||||||
|
|
||||||
qDebug() << "Wrote new identity credentials to disk";
|
qDebug() << "Wrote new identity credentials to disk";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user