4

コードを検討してください

template <typename... Args>
void foo (Args&& ...)
{
}

template <typename... Args>
void bar (Args&& ... args)
{
   foo (std::forward (args)...);
}

int main ()
{
  bar (true);
}
~                   

gcc4.7.2はエラーを出します

error: no matching function for call to ‘forward(bool&)’
note: candidates are:

template<class _Tp> constexpr _Tp&& std::forward(typename std::remove_reference<_Tp>::type&)
note:   template argument deduction/substitution failed:

note: template<class _Tp> constexpr _Tp&& std::forward(typename std::remove_reference<_Tp>::type&&)
note:   template argument deduction/substitution failed:

リテラルが右辺値として推定されないのはなぜですか?

4

1 に答える 1

7

正しく使用していませstd::forward()ん: 推定された型を の引数として指定する必要がありますstd::forward():

foo (std::forward<Args>(args)...);
于 2012-11-09T23:07:27.447 に答える