You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
633 B
28 lines
633 B
// uncaught -- uncaught_exception for Microsoft
|
|
#if 1300 <= _MSC_VER
|
|
#include <eh.h>
|
|
#include <exception>
|
|
_STD_BEGIN
|
|
|
|
_CRTIMP2 bool __cdecl uncaught_exception()
|
|
{ // report if handling a throw
|
|
return (__uncaught_exception());
|
|
}
|
|
|
|
_STD_END
|
|
#else /* 1300 <= _MSC_VER */
|
|
#include <exception>
|
|
_STD_BEGIN
|
|
|
|
_CRTIMP2 bool __cdecl uncaught_exception()
|
|
{ // report if handling a throw -- dummy
|
|
return (false);
|
|
}
|
|
|
|
_STD_END
|
|
#endif /* 1300 <= _MSC_VER */
|
|
|
|
/*
|
|
* Copyright (c) 1992-2001 by P.J. Plauger. ALL RIGHTS RESERVED.
|
|
* Consult your license regarding permissions and restrictions.
|
|
V3.10:0009 */
|