fix warning (for -Wextra)

This commit is contained in:
bolero-MURAKAMI 2013-07-22 22:00:09 +09:00
parent 49243e6c94
commit 57e35349e5
146 changed files with 459 additions and 499 deletions

View file

@ -20,7 +20,7 @@ namespace sprout {
template<typename Result, typename InputRange, typename T>
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
remove_copy(InputRange const& rng, Result const& result, T const& value) {
remove_copy(InputRange const& rng, T const& value) {
return sprout::fixed::remove_copy<Result>(sprout::begin(rng), sprout::end(rng), value);
}
} // namespace fixed