linux-packaging-mono/external/llvm-project/clang/www/libstdc++4.6-clang11.patch
Xamarin Public Jenkins (auto-signing) 468663ddbb Imported Upstream version 6.10.0.49
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
2020-01-16 16:38:04 +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...>