Utility: Rollback unwanted commit while adding noexcept to boost::declval

[SVN r77562]
This commit is contained in:
Vicente J. Botet Escriba 2012-03-26 17:07:17 +00:00
parent 2cfe775694
commit c11e08b6b7

View File

@ -37,13 +37,13 @@
namespace boost {
#if !defined(BOOST_NO_RVALUE_REFERENCES)
//#if !defined(BOOST_NO_RVALUE_REFERENCES)
template <typename T>
typename add_rvalue_reference<T>::type declval() BOOST_NOEXCEPT; // as unevaluated operand
#else
template <typename T>
typename add_lvalue_reference<T>::type declval() BOOST_NOEXCEPT; // as unevaluated operand
#endif
//#else
// template <typename T>
// typename add_lvalue_reference<T>::type declval() BOOST_NOEXCEPT; // as unevaluated operand
//#endif
} // namespace boost
#endif // BOOST_TYPE_TRAITS_EXT_DECLVAL__HPP