Linkgraph: Fix a memory leak when aborting job early.

This commit is contained in:
Jonathan G Rennison
2017-02-08 02:01:27 +00:00
parent 9d5f34fea6
commit 28211c21fc
2 changed files with 2 additions and 4 deletions

View File

@@ -52,7 +52,7 @@ private:
void Init(uint supply);
};
typedef SmallVector<NodeAnnotation, 16> NodeAnnotationVector;
typedef std::vector<NodeAnnotation> NodeAnnotationVector;
typedef SmallMatrix<EdgeAnnotation> EdgeAnnotationMatrix;
friend const SaveLoad *GetLinkGraphJobDesc();