15 lines
659 B
Diff
15 lines
659 B
Diff
diff -rwud rtorrent-0.8.2/src/rpc/command.h rtorrent-0.8.2-my/src/rpc/command.h
|
|
--- rtorrent-0.8.2/src/rpc/command.h 2008-05-07 14:19:10.000000000 +0200
|
|
+++ rtorrent-0.8.2-my/src/rpc/command.h 2008-06-09 02:23:34.000000000 +0200
|
|
@@ -73,10 +73,8 @@
|
|
rt_triple(const T1& a, const T2& b, const T3& c) :
|
|
base_type(a, b), third(c) {}
|
|
|
|
- template <typename U1, typename U2>
|
|
- rt_triple(const std::pair<U1, U2>& b) : base_type(b), third() {}
|
|
+ rt_triple(const base_type& b) : base_type(b), third() {}
|
|
|
|
- template <typename U1, typename U2, typename U3>
|
|
rt_triple(const rt_triple& src) :
|
|
base_type(src.first, src.second), third(src.third) {}
|
|
};
|