diff --git a/src/rpc/command.h b/src/rpc/command.h index 7d50dd81..07ade76a 100644 --- a/src/rpc/command.h +++ b/src/rpc/command.h @@ -87,10 +87,8 @@ struct rt_triple : private std::pair { rt_triple(const T1& a, const T2& b, const T3& c) : base_type(a, b), third(c) {} - template - rt_triple(const std::pair& b) : base_type(b), third() {} + rt_triple(const base_type& b) : base_type(b), third() {} - template rt_triple(const rt_triple& src) : base_type(src.first, src.second), third(src.third) {} };