Utility: merge [68982] to fix #5213.

[SVN r83427]
This commit is contained in:
Vicente J. Botet Escriba 2013-03-14 17:35:42 +00:00
parent d51799518b
commit 1ab9131bca

View File

@ -101,7 +101,12 @@ namespace boost
<< "***** Internal Program Error - assertion (" << expr << ") failed in "
<< function << ":\n"
<< file << '(' << line << "): " << msg << std::endl;
#ifdef UNDER_CE
// The Windows CE CRT library does not have abort() so use exit(-1) instead.
std::exit(-1);
#else
std::abort();
#endif
}
} // detail
} // assertion