Commit bf93f5c4 authored by Francois Gygi's avatar Francois Gygi
Browse files

fixed operator= to include copy of occ_ and eig_

git-svn-id: http://qboxcode.org/svn/qb/trunk@1195 cba15fb0-1239-40c8-b417-11db7ca47a34
Showing with 2 additions and 0 deletions
+2 -0
......@@ -1122,6 +1122,8 @@ SlaterDet& SlaterDet::operator=(SlaterDet& rhs)
if ( this == &rhs ) return *this;
assert(ctxt_.ictxt() == rhs.context().ictxt());
c_ = rhs.c_;
occ_ = rhs.occ_;
eig_ = rhs.eig_;
return *this;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment