Remove tabs in file.

[SVN r24040]
This commit is contained in:
Rene Rivera
2004-07-25 15:53:20 +00:00
parent fdbbc2b3ff
commit c9d7858ff0

View File

@ -447,7 +447,7 @@ public:
operator==(Functor g) const
{
if (const Functor* fp = target<Functor>())
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<Functor>())
return !function_equal(*fp, g);
return !function_equal(*fp, g);
else return true;
}
#endif