aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorSergio Martins <sergio.martins@kdab.com>2013-08-25 20:13:55 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-28 13:20:42 +0200
commit23919b35ca9b89caf9c767635b966cae117f52d2 (patch)
tree144af205ffd3e17e2b9b36e407e20a44d3161741 /src/3rdparty
parent9a7489cc925540611383f8db044a5c79fe472317 (diff)
wince: Build fix, abort() is not available on this platform
Change-Id: I0962f8b89de465d84d913b46ba482a538fe25495 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/double-conversion/utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/double-conversion/utils.h b/src/3rdparty/double-conversion/utils.h
index 767094b8b7..f0524804b4 100644
--- a/src/3rdparty/double-conversion/utils.h
+++ b/src/3rdparty/double-conversion/utils.h
@@ -36,10 +36,10 @@
#define ASSERT(condition) (assert(condition))
#endif
#ifndef UNIMPLEMENTED
-#define UNIMPLEMENTED() (abort())
+#define UNIMPLEMENTED() (exit(-1))
#endif
#ifndef UNREACHABLE
-#define UNREACHABLE() (abort())
+#define UNREACHABLE() (exit(-1))
#endif
// Double operations detection based on target architecture.