mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
add SPROUT_FORWARD - workaround for ICC
This commit is contained in:
parent
7831105add
commit
274122efb2
202 changed files with 750 additions and 741 deletions
|
@ -66,13 +66,13 @@ namespace sprout {
|
|||
inline SPROUT_CONSTEXPR auto
|
||||
operator|(Range&& lhs, sprout::compost::effects::distort_holder<T> const& rhs)
|
||||
-> decltype(
|
||||
sprout::forward<Range>(lhs)
|
||||
SPROUT_FORWARD(Range, lhs)
|
||||
| sprout::compost::effects::changed_volume(rhs.gain())
|
||||
| sprout::compost::effects::clipped()
|
||||
| sprout::compost::effects::changed_volume(rhs.level())
|
||||
)
|
||||
{
|
||||
return sprout::forward<Range>(lhs)
|
||||
return SPROUT_FORWARD(Range, lhs)
|
||||
| sprout::compost::effects::changed_volume(rhs.gain())
|
||||
| sprout::compost::effects::clipped()
|
||||
| sprout::compost::effects::changed_volume(rhs.level())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue