Took out duplicate operator=

This commit is contained in:
Harry Moffat 2014-08-05 23:44:31 +00:00
parent e129d02d93
commit 8ea3da7247

View file

@ -74,7 +74,7 @@ SurfPhase::SurfPhase(const SurfPhase& right) :
m_logn0(right.m_logn0),
m_press(right.m_press)
{
*this = operator=(right);
operator=(right);
}
SurfPhase& SurfPhase::operator=(const SurfPhase& right)