From e88a447dc08db341382fa82fcebb38e2579f5d5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20Martins?= Date: Thu, 29 Aug 2013 10:17:12 +0100 Subject: wince: Build fix, assert() is not present in this platform. Change-Id: Ib29f1411b9829bc9bf6a94e4fb23a33f955ee1b2 Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4object_p.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/qml/jsruntime/qv4object_p.h') diff --git a/src/qml/jsruntime/qv4object_p.h b/src/qml/jsruntime/qv4object_p.h index ce3a271342..d40720b515 100644 --- a/src/qml/jsruntime/qv4object_p.h +++ b/src/qml/jsruntime/qv4object_p.h @@ -58,6 +58,11 @@ #include #include +#ifdef _WIN32_WCE +#undef assert +#define assert(x) +#endif // _WIN32_WCE + QT_BEGIN_NAMESPACE namespace QV4 { -- cgit v1.2.3