add SPROUT_FORWARD - workaround for ICC

This commit is contained in:
bolero-MURAKAMI 2014-02-22 16:32:51 +09:00
parent 7831105add
commit 274122efb2
202 changed files with 750 additions and 741 deletions

View file

@ -22,7 +22,7 @@ namespace sprout {
inline SPROUT_CONSTEXPR typename sprout::tuples::tuple_construct_traits<Tuple>::copied_type
make(Args&&... args) {
return sprout::tuples::tuple_construct_traits<Tuple>::make(
sprout::forward<Args>(args)...
SPROUT_FORWARD(Args, args)...
);
}
} // namespace tuples