mirror of
https://github.com/boostorg/type_traits.git
synced 2025-08-02 22:14:29 +02:00
TypeTraits: make it work with Borland
[SVN r81765]
This commit is contained in:
@@ -49,9 +49,9 @@ namespace type_traits_detail {
|
||||
|
||||
template <typename T>
|
||||
struct add_rvalue_reference_imp
|
||||
{
|
||||
{
|
||||
typedef typename boost::type_traits_detail::add_rvalue_reference_helper
|
||||
<T, (!is_void<T>::value && !is_reference<T>::value) >::type type;
|
||||
<T, (is_void<T>::value == false && is_reference<T>::value == false) >::type type;
|
||||
};
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user