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

@ -25,7 +25,7 @@ namespace sprout {
operator()(T&& x)
const SPROUT_NOEXCEPT_EXPR(SPROUT_NOEXCEPT_EXPR(sprout::to_string(std::declval<T>())))
{
return sprout::to_string(sprout::forward<T>(x));
return sprout::to_string(SPROUT_FORWARD(T, x));
}
};
} // namespace sprout