mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
fix coding-style
This commit is contained in:
parent
df3023db30
commit
5ce2cb023c
196 changed files with 1180 additions and 1787 deletions
|
@ -11,12 +11,14 @@ namespace sprout {
|
|||
|
||||
// 25.4.6.5 is_heap
|
||||
template<typename Range>
|
||||
inline SPROUT_CONSTEXPR bool is_heap(Range const& range) {
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
is_heap(Range const& range) {
|
||||
return sprout::is_heap(sprout::begin(range), sprout::end(range));
|
||||
}
|
||||
|
||||
template<typename Range, typename Compare>
|
||||
inline SPROUT_CONSTEXPR bool is_heap(Range const& range, Compare comp) {
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
is_heap(Range const& range, Compare comp) {
|
||||
return sprout::is_heap(sprout::begin(range), sprout::end(range), comp);
|
||||
}
|
||||
} // namespace range
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue