mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-18 14:52:13 +02:00
Fusion: adding a missing 'const'
[SVN r57248]
This commit is contained in:
@ -55,7 +55,7 @@ namespace boost { namespace fusion
|
|||||||
inline typename result_of::find_if<Sequence const, Pred>::type const
|
inline typename result_of::find_if<Sequence const, Pred>::type const
|
||||||
find_if(Sequence const& seq)
|
find_if(Sequence const& seq)
|
||||||
{
|
{
|
||||||
typedef typename result_of::find_if<Sequence, Pred>::filter filter;
|
typedef typename result_of::find_if<Sequence const, Pred>::filter filter;
|
||||||
return filter::call(fusion::begin(seq));
|
return filter::call(fusion::begin(seq));
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
Reference in New Issue
Block a user