use unique_ptr instead of auto_ptr - note that this modifies boost, which isn't a big deal since it is part of the repo, but we should really decouple the open source libs sometime

This commit is contained in:
CodeCodon
2015-07-28 15:48:32 -05:00
parent b7e8d249bb
commit beb1eecd5f
54 changed files with 153 additions and 153 deletions
@@ -83,7 +83,7 @@ private:
MxCifBinTree * m_left; // left child
MxCifBinTree * m_right; // right child
// @todo: use an auto_ptr here?
// @todo: use an unique_ptr here?
std::vector<const MxCifQuadTreeBounds *> m_objects; // objects that are contained in our bounds
};