fix coding-style

This commit is contained in:
bolero-MURAKAMI 2012-10-06 13:53:07 +09:00
parent df3023db30
commit 5ce2cb023c
196 changed files with 1180 additions and 1787 deletions

View file

@ -11,7 +11,8 @@ namespace sprout {
// 25.2.1 All of
template<typename Range, typename Predicate>
inline SPROUT_CONSTEXPR bool all_of(Range const& range, Predicate pred) {
inline SPROUT_CONSTEXPR bool
all_of(Range const& range, Predicate pred) {
return sprout::all_of(sprout::begin(range), sprout::end(range), pred);
}
} // namespace range