Remove useless explicit constructor

main
Luis Díaz Más 4 years ago
parent f77607ee8a
commit c33c6abc82

@ -50,16 +50,6 @@ namespace Jzon
Pair(T1 first, T2 second) : first(first), second(second)
{}
Pair &operator=(const Pair &rhs)
{
if (this != &rhs)
{
this->first = rhs.first;
this->second = rhs.second;
}
return *this;
}
T1 first;
T2 second;
};

Loading…
Cancel
Save