Small fix to make vacpp happy

[SVN r24245]
This commit is contained in:
Pavol Droba
2004-08-02 10:32:37 +00:00
parent 4c0efd3d1a
commit 747b4e17cc

View File

@ -208,7 +208,9 @@ namespace boost {
return true; return true;
} }
return (first_finder(Test,Comp)(begin(Input), end(Input))); // Use the temporary variable to make VACPP happy
bool bResult=(first_finder(Test,Comp)(begin(Input), end(Input)));
return bResult;
} }
//! 'Contains' predicate //! 'Contains' predicate