2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-20 03:02:13 +00:00

Remove nonconformant compiler test disablement

[SVN r27660]
This commit is contained in:
Michael Stevens
2005-03-15 08:47:30 +00:00
parent 3c384436de
commit 512c2357c5
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;
}