nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 32 lines 958 B view raw
1From 015845b3c320d02691f28373097d1e6dbbac79f7 Mon Sep 17 00:00:00 2001 2From: Thomas Tuegel <ttuegel@mailbox.org> 3Date: Tue, 17 Sep 2019 05:37:04 -0500 4Subject: [PATCH 10/11] qtbase-assert 5 6--- 7 src/testlib/qtestassert.h | 7 +++++-- 8 1 file changed, 5 insertions(+), 2 deletions(-) 9 10diff --git a/src/testlib/qtestassert.h b/src/testlib/qtestassert.h 11index 6498ea84ef..d821ced7fc 100644 12--- a/src/testlib/qtestassert.h 13+++ b/src/testlib/qtestassert.h 14@@ -44,10 +44,13 @@ 15 16 QT_BEGIN_NAMESPACE 17 18- 19+#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS) 20+#define QTEST_ASSERT(cond) do { } while ((false) && (cond)) 21+#define QTEST_ASSERT_X(cond, where, what) do { } while ((false) && (cond)) 22+#else 23 #define QTEST_ASSERT(cond) do { if (!(cond)) qt_assert(#cond,__FILE__,__LINE__); } while (false) 24- 25 #define QTEST_ASSERT_X(cond, where, what) do { if (!(cond)) qt_assert_x(where, what,__FILE__,__LINE__); } while (false) 26+#endif 27 28 QT_END_NAMESPACE 29 30-- 312.25.4 32