forked from boostorg/algorithm
Small fix to make vacpp happy
[SVN r24245]
This commit is contained in:
@ -208,7 +208,9 @@ namespace boost {
|
||||
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
|
||||
|
Reference in New Issue
Block a user