2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-23 04:02:10 +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,21 +16,7 @@
#include "test2.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
std::cout << "test_blas_1" << std::endl;
#ifdef USE_FLOAT
std::cout << "float" << std::endl;
test_blas_1<ublas::vector<float>, 3> () ();
@@ -103,4 +89,3 @@ int main () {
return 0;
}