Displaying 11 results from an estimated 11 matches for "_t2".
Did you mean:
_t
2013 Jul 26
0
[LLVMdev] Botan and Android
...;class _CharT, class _Traits, class _Alloc> bool
std::operator!=(const std::basic_string<_CharT, _Traits, _Alloc>&,
const std::basic_string<_CharT, _Traits, _Alloc>&)
/opt/android-ndk-r8e//sources/cxx-stl/stlport/stlport/stl/_alloc.h:384:24:
note: template<class _T1, class _T2> bool std::operator!=(const
std::allocator<_T1>&, const std::allocator<_T2>&)
/opt/android-ndk-r8e//sources/cxx-stl/stlport/stlport/stl/_iterator.h:124:24:
note: template<class _Iterator> bool std::operator!=(const
std::reverse_iterator<_Iterator>&, const
std:...
2015 Sep 27
2
libcxx build error.
...:626,
from
/home/bemineni/llvm/llvm-3.4.2/projects/libcxx-3.4.2/include/string:439,
from
/home/bemineni/llvm/llvm-3.4.2/projects/libcxx-3.4.2/src/string.cpp:12:
/home/bemineni/llvm/llvm-3.4.2/projects/libcxx-3.4.2/include/utility:320:
error: ‘std::__1::pair<_T1, _T2>::pair(std::__1::pair<_T1, _T2>&&)’ cannot
be defaulted
In file included from
/home/bemineni/llvm/llvm-3.4.2/projects/libcxx-3.4.2/include/memory:603,
from
/home/bemineni/llvm/llvm-3.4.2/projects/libcxx-3.4.2/include/algorithm:627,
from
/home/bemin...
2012 Sep 27
4
[LLVMdev] Clang bug?
...pressed_pair_imp<std::__1::__tree_end_node<std::__1::__tree_node_base<void
*> *>,
std::__1::allocator<std::__1::__tree_node<std::__1::pair<int,
Templ8<int>::Member *>, void *>>, 2>' requested here
: private __libcpp_compressed_pair_imp<_T1, _T2>
^
/usr/bin/../lib/c++/v1/__tree:813:56: note: in instantiation of
template class 'std::__1::__compressed_pair<std::__1::__tree_end_node<std::__1::__tree_node_base<void
*> *>,
std::__1::allocator<std::__1::__tree_node<std::__1::pair<int,
Templ8<...
2012 Sep 28
0
[LLVMdev] Clang bug?
...t;std::__1::__tree_end_node<std::__1::__tree_node_base<void
> *> *>,
> std::__1::allocator<std::__1::__tree_node<std::__1::pair<int,
> Templ8<int>::Member *>, void *>>, 2>' requested here
> : private __libcpp_compressed_pair_imp<_T1, _T2>
> ^
> /usr/bin/../lib/c++/v1/__tree:813:56: note: in instantiation of
> template class 'std::__1::__compressed_pair<std::__1::__tree_end_node<std::__1::__tree_node_base<void
> *> *>,
> std::__1::allocator<std::__1::__tree_node<std::__1::...
2012 Sep 28
4
[LLVMdev] Clang bug?
...nd_node<std::__1::__tree_node_base<void
> > *> *>,
> > std::__1::allocator<std::__1::__tree_node<std::__1::pair<int,
> > Templ8<int>::Member *>, void *>>, 2>' requested here
> > : private __libcpp_compressed_pair_imp<_T1, _T2>
> > ^
> > /usr/bin/../lib/c++/v1/__tree:813:56: note: in instantiation of
> > template class
> 'std::__1::__compressed_pair<std::__1::__tree_end_node<std::__1::__tree_node_base<void
> > *> *>,
> > std::__1::allocator<std::...
2012 Sep 29
0
[LLVMdev] Clang bug?
...__1::__tree_node_base<void
>> > *> *>,
>> > std::__1::allocator<std::__1::__tree_node<std::__1::pair<int,
>> > Templ8<int>::Member *>, void *>>, 2>' requested here
>> > : private __libcpp_compressed_pair_imp<_T1, _T2>
>> > ^
>> > /usr/bin/../lib/c++/v1/__tree:813:56: note: in instantiation of
>> > template class
>> > 'std::__1::__compressed_pair<std::__1::__tree_end_node<std::__1::__tree_node_base<void
>> > *> *>,
>> >...
2008 Jan 18
2
[PATCH 2/3] Make IRQ handlers typesafe.
...__attribute__ ((format
(void)__tmp; \
})
+/*
+ * Returns var as a type1. If it's not a type1 or type2 you'll get:
+ * "error: cast to union type from type not present in union"
+ */
+#define check_either_type(var, type1, type2) \
+ (((union { typeof(type1) _t1; typeof(type2) _t2; })var)._t1)
+
struct sysinfo;
extern int do_sysinfo(struct sysinfo *info);
diff -r 0fe1a980708b kernel/irq/devres.c
--- a/kernel/irq/devres.c Thu Jan 17 14:48:56 2008 +1100
+++ b/kernel/irq/devres.c Thu Jan 17 15:42:01 2008 +1100
@@ -41,9 +41,9 @@ static int devm_irq_match(struct device
* I...
2008 Jan 18
2
[PATCH 2/3] Make IRQ handlers typesafe.
...__attribute__ ((format
(void)__tmp; \
})
+/*
+ * Returns var as a type1. If it's not a type1 or type2 you'll get:
+ * "error: cast to union type from type not present in union"
+ */
+#define check_either_type(var, type1, type2) \
+ (((union { typeof(type1) _t1; typeof(type2) _t2; })var)._t1)
+
struct sysinfo;
extern int do_sysinfo(struct sysinfo *info);
diff -r 0fe1a980708b kernel/irq/devres.c
--- a/kernel/irq/devres.c Thu Jan 17 14:48:56 2008 +1100
+++ b/kernel/irq/devres.c Thu Jan 17 15:42:01 2008 +1100
@@ -41,9 +41,9 @@ static int devm_irq_match(struct device
* I...
2012 Sep 29
1
[LLVMdev] Clang bug?
...e<void
> >> > *> *>,
> >> > std::__1::allocator<std::__1::__tree_node<std::__1::pair<int,
> >> > Templ8<int>::Member *>, void *>>, 2>' requested here
> >> > : private __libcpp_compressed_pair_imp<_T1, _T2>
> >> > ^
> >> > /usr/bin/../lib/c++/v1/__tree:813:56: note: in instantiation of
> >> > template class
> >> >
> 'std::__1::__compressed_pair<std::__1::__tree_end_node<std::__1::__tree_node_base<void
> >> > *...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list.
I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without
modifications.
How did I try it?
Created a (non-root) build environment (not a mock )
Installed the kernel.scr.rpm and did a
rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee
prep-out.log
The build failed at the end:
Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL
Checking
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...?d~u}rYplt
zUqJkFK2#VXt<;Vq^sqR?kdE#;c_0!$L-tl=hZ}j@;u?-6SBmwGZ7?;Q at NXp;wc-th
zFipCAVQ)ll^3rQy2jve6OU*YHDQ1?hLZ-6JlzC}jIiSR!>8q}d)F%*AFf&;F-heDd
zy0lGNM7E=P(Q;^$+D4j2^D}ut8>e}pD}G?ndVn0VxEc_)AXe1;Zc<Pg3RV~7h8ll4
z(7v%}@K>}g at SDrC-WMs5ziJVeg}#dR%)F~^=4t#HfH*a(UAj2M#B>u9ix3a_t2*ef
z^qwGwJBXJ1`~fvGLXFg?Ni%4E9T!H>`WH#8A8V(_zS#GW6vxn-VEIsN(V6xSK~1`_
z!1C9d^=29#a&3J-{|H|oObUoWQizkd8BXs-BWl&Z{ZswhzsV3BQL*cl`y5dCF!~(1
zBuRo&ZLaud$A7o&Qt;1f{@tEbyX}7#r=m-T4i0;hbA_=(mjy>i>n^^VlopAH{$XEp
zaaCi9&@1bd^_vr-%QLJi?t3Cfb;8(RCikq`fcYl7zb_K@$Saq^nhN_9(6HVXO99R%...