2007-08-17 Chris Fairles <chris.fairles@gmail.com>
PR libstdc++/33098
* include/std/type_traits (__is_convertible_helper):
Use add_lvalue_reference.
From-SVN: r127588
+2007-08-17 Chris Fairles <chris.fairles@gmail.com>
+
+ PR libstdc++/33098
+ * include/std/type_traits (__is_convertible_helper):
+ Use add_lvalue_reference.
+
2007-08-17 Johannes Willkomm <willkomm@sc.rwth-aachen.de>
PR libstdc++/33084
{
// "An imaginary lvalue of type From...".
static const bool __value = (__is_convertible_simple<typename
- add_reference<_From>::type, _To>::__value);
+ add_lvalue_reference<_From>::type,
+ _To>::__value);
};
template<typename _From, typename _To>