From 561fe7bbc7baa5fea258fb0506868d306c74c487 Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Thu, 2 Feb 2006 18:43:09 +0000 Subject: [PATCH] uBLAS cleanup and remove legacy support --- test/concepts.cpp | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/test/concepts.cpp b/test/concepts.cpp index 8f3f01d5..d14f8e82 100644 --- a/test/concepts.cpp +++ b/test/concepts.cpp @@ -14,17 +14,6 @@ // GeNeSys mbH & Co. KG in producing this work. // -#ifdef BOOST_MSVC - -#pragma warning (disable: 4355) -#pragma warning (disable: 4503) -#pragma warning (disable: 4786) - -#endif - -#include -#include - #include #include #include @@ -36,15 +25,12 @@ #include #include #include -#include - #include namespace ublas = boost::numeric::ublas; + int main () { void (* check) (void) = ublas::concept_checks; boost::ignore_unused_variable_warning (check); - return 0; } -