2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-23 16:12:09 +00:00

Remove nonconformant compiler test disablement

svn path=/trunk/boost/libs/numeric/ublas/; revision=27660
This commit is contained in:
Michael Stevens
2005-03-15 08:47:30 +00:00
parent 97a2d302a9
commit 78ced63fe2
14 changed files with 0 additions and 159 deletions

View File

@@ -16,20 +16,8 @@
#include "test4.hpp"
#ifdef BOOST_MSVC
// Standard new handler is not standard compliant.
#include <new.h>
int __cdecl std_new_handler (unsigned) {
throw std::bad_alloc ();
}
#endif
int main () {
#ifdef BOOST_MSVC
_set_new_handler (std_new_handler);
#endif
test_matrix_vector ();
test_matrix ();
return 0;
}