From a8d20dc5ee4f475788d24b993b18a143c013c0b7 Mon Sep 17 00:00:00 2001 From: David Rose Date: Wed, 21 Mar 2001 03:41:46 +0000 Subject: [PATCH] *** empty log message *** --- dtool/src/dconfig/notify.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dtool/src/dconfig/notify.cxx b/dtool/src/dconfig/notify.cxx index 49ff3f883b..350ff41074 100644 --- a/dtool/src/dconfig/notify.cxx +++ b/dtool/src/dconfig/notify.cxx @@ -392,7 +392,11 @@ assert_failure(const char *expression, int line, nout << "Assertion failed: " << _assert_error_message << "\n"; if (get_assert_abort()) { +#ifdef WIN32 + assert(false); +#else abort(); +#endif } return true;