From 8fc01fb5642ebfa779f78d53350a6a62ee7a3d3a Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Fri, 7 Jan 2005 18:30:30 +0000 Subject: [PATCH] avoid multi line #if || --- include/boost/numeric/ublas/detail/config.hpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/include/boost/numeric/ublas/detail/config.hpp b/include/boost/numeric/ublas/detail/config.hpp index 6a260f70..071e8836 100644 --- a/include/boost/numeric/ublas/detail/config.hpp +++ b/include/boost/numeric/ublas/detail/config.hpp @@ -164,10 +164,7 @@ namespace std { // Detect other compilers with serious defects -#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) - || defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) - || defined(BOOST_NO_SFINAE) - || defined(BOOST_NO_STDC_NAMESPACE) +#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) || defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) || defined(BOOST_NO_SFINAE) || defined(BOOST_NO_STDC_NAMESPACE) #define BOOST_UBLAS_UNSUPPORTED_COMPILER #endif