Rvalue ссылочный и буквальный

Рассмотрим код

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

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

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

gcc 4.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

Решение

Вы не используете std::forward() правильно: вам нужно дать выведенный тип в качестве аргумента std::forward():

foo (std::forward<Args>(args)...);
7

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]