Codechange: Removed SmallVector completely
This commit is contained in:
@@ -435,7 +435,7 @@ public:
|
||||
void RemoveEdge(NodeID to);
|
||||
};
|
||||
|
||||
typedef SmallVector<BaseNode, 16> NodeVector;
|
||||
typedef std::vector<BaseNode> NodeVector;
|
||||
typedef SmallMatrix<BaseEdge> EdgeMatrix;
|
||||
|
||||
/** Minimum effective distance for timeout calculation. */
|
||||
|
@@ -50,7 +50,7 @@ private:
|
||||
void Init(uint supply);
|
||||
};
|
||||
|
||||
typedef SmallVector<NodeAnnotation, 16> NodeAnnotationVector;
|
||||
typedef std::vector<NodeAnnotation> NodeAnnotationVector;
|
||||
typedef SmallMatrix<EdgeAnnotation> EdgeAnnotationMatrix;
|
||||
|
||||
friend const SaveLoad *GetLinkGraphJobDesc();
|
||||
|
Reference in New Issue
Block a user