QTest: fix grammar in static_assert()

Change-Id: I6fd408702bb43e37434b382cb6cb9057ca192064
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
This commit is contained in:
Marc Mutz 2021-11-23 14:15:22 +01:00
parent 733bd81328
commit cf2336ae6e

View File

@ -148,9 +148,9 @@ inline void useVerifyThrowsException() {}
* in their code.
*/
# define QVERIFY_THROWS_EXCEPTION(...) \
static_assert(false, "Support of exceptions is disabled")
static_assert(false, "Support for exceptions is disabled")
# define QVERIFY_THROWS_NO_EXCEPTION(...) \
static_assert(false, "Support of exceptions is disabled")
static_assert(false, "Support for exceptions is disabled")
#endif // !QT_NO_EXCEPTIONS