提交 805a746e 编写于 作者: M Marius Muja

Fix reference to reference compile error on some compilers

上级 65a91cef
......@@ -49,7 +49,7 @@ public:
First first;
Second second;
pair(const First& a, const Second& b) : first(a), second(b) {}
pair(First a, Second b) : first(a), second(b) {}
template<typename U, typename V>
pair(const pair<U,V>& x): first(x.first), second(x.second) {}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册