2
0
mirror of https://github.com/boostorg/thread.git synced 2026-01-30 08:22:13 +00:00

Added missing "typename"

[SVN r63651]
This commit is contained in:
Anthony Williams
2010-07-05 14:37:13 +00:00
parent 7c674bc255
commit 4bbf47086d

View File

@@ -18,7 +18,7 @@
template<typename T>
typename boost::remove_reference<T>::type&& cast_to_rval(T&& t)
{
return static_cast<boost::remove_reference<T>::type&&>(t);
return static_cast<typename boost::remove_reference<T>::type&&>(t);
}
#else
template<typename T>