llvm-capstone/clang/www/libstdc++4.6-clang11.patch
Richard Smith 84b163cf66 libstdc++-4.6 needs the same common_type fix as libstdc++-4.7. Other than that,
Clang can now cope with its eccentricities in C++11 mode.

llvm-svn: 165265
2012-10-04 22:23:07 +00:00

12 lines
476 B
Diff

--- type_traits.orig 2012-10-04 15:20:43.452992946 -0700
+++ type_traits 2012-10-04 15:21:32.423657167 -0700
@@ -1110,7 +1110,7 @@
template<typename _Tp, typename _Up>
struct common_type<_Tp, _Up>
- { typedef decltype(true ? declval<_Tp>() : declval<_Up>()) type; };
+ { typedef typename decay<decltype(true ? declval<_Tp>() : declval<_Up>())>::type type; };
template<typename _Tp, typename _Up, typename... _Vp>
struct common_type<_Tp, _Up, _Vp...>