Switch to Q_ASSERT.

This commit is contained in:
Ernie Pasveer
2022-02-08 19:24:41 -06:00
parent 87dccea96d
commit 82406284e2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -164,7 +164,7 @@ void SeerMemoryVisualizerWidget::handleText (const QString& text) {
QString num = contents_text.mid(i, 2);
bool ok = false;
array.push_back(num.toInt(&ok, 16));
assert(ok);
Q_ASSERT(ok);
}
// Give the byte array to the hex widget.