From 44088cb533b4f2b880256774d9020b1688c31531 Mon Sep 17 00:00:00 2001 From: Tobias Schwinger Date: Thu, 16 Mar 2006 20:27:05 +0000 Subject: [PATCH] removes whitespace after backslash in macro definition [SVN r33357] --- include/boost/typeof/typeof.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/typeof/typeof.hpp b/include/boost/typeof/typeof.hpp index 2e38c08..0a18158 100755 --- a/include/boost/typeof/typeof.hpp +++ b/include/boost/typeof/typeof.hpp @@ -146,11 +146,11 @@ # define BOOST_TYPEOF_TPL BOOST_TYPEOF # define BOOST_TYPEOF_NESTED_TYPEDEF_TPL(name,expr) \ struct name {\ - typedef BOOST_TYPEOF_TPL(expr) type;\ + typedef BOOST_TYPEOF_TPL(expr) type;\ }; # define BOOST_TYPEOF_NESTED_TYPEDEF(name,expr) \ struct name {\ - typedef BOOST_TYPEOF(expr) type;\ + typedef BOOST_TYPEOF(expr) type;\ }; # endif # define BOOST_TYPEOF_REGISTER_TYPE(x)