1 parent 6e38ddf commit 7de9278Copy full SHA for 7de9278
1 file changed
test/cfg/qt.cpp
@@ -894,6 +894,13 @@ int qdateIsValid()
894
return qd.month();
895
}
896
897
+void qAssertX()
898
+{
899
+ const char *where = "test";
900
+ const char *what = "assertion failed";
901
+ Q_ASSERT_X(false, where, what);
902
+}
903
+
904
struct S_QTimer_connect : QObject { // #13846
905
S_QTimer_connect() {
906
// cppcheck-suppress checkLibraryFunction - timeout() is a signal from QTimer
0 commit comments