From 14b652ed902d9a1901c9de2ada482cca25fe7f0a Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Wed, 20 May 2009 19:19:00 +0000 Subject: [PATCH] Fixed most tab and min/max issues from trunk inspection report [SVN r53141] --- include/boost/mpl/string.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/boost/mpl/string.hpp b/include/boost/mpl/string.hpp index 0dd8554..ce7c782 100644 --- a/include/boost/mpl/string.hpp +++ b/include/boost/mpl/string.hpp @@ -68,7 +68,7 @@ namespace boost { namespace mpl (((c)<<8)|(unsigned char)(i)) #define BOOST_MPL_MULTICHAR_POP_BACK(c) \ - (((1<<((BOOST_MPL_MULTICHAR_LENGTH(c)-1)*8))-1)&(c)) + (((1<<((BOOST_MPL_MULTICHAR_LENGTH(c)-1)*8))-1)&(c)) #define BOOST_MPL_MULTICHAR_POP_FRONT(c) \ ((c)>>8) @@ -329,12 +329,12 @@ namespace boost { namespace mpl typename mpl::if_< mpl::empty > , mpl::string<(char)Value::value> - , type0 - >::type - type; - #else - typedef type0 type; - #endif + , type0 + >::type + type; + #else + typedef type0 type; + #endif }; };