From c9d7858ff0ab3798de8d869eef5da21737ed9f80 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 25 Jul 2004 15:53:20 +0000 Subject: [PATCH] Remove tabs in file. [SVN r24040] --- include/boost/function/function_base.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/function/function_base.hpp b/include/boost/function/function_base.hpp index 5826092..23f5f20 100644 --- a/include/boost/function/function_base.hpp +++ b/include/boost/function/function_base.hpp @@ -447,7 +447,7 @@ public: operator==(Functor g) const { if (const Functor* fp = target()) - return function_equal(*fp, g); + return function_equal(*fp, g); else return false; } @@ -456,7 +456,7 @@ public: operator!=(Functor g) const { if (const Functor* fp = target()) - return !function_equal(*fp, g); + return !function_equal(*fp, g); else return true; } #endif