Update to 1.10.0-beta1
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. */
|
||||
@@ -496,7 +496,7 @@ public:
|
||||
* Get the current size of the component.
|
||||
* @return Size.
|
||||
*/
|
||||
inline uint Size() const { return this->nodes.Length(); }
|
||||
inline uint Size() const { return (uint)this->nodes.size(); }
|
||||
|
||||
/**
|
||||
* Get date of last compression.
|
||||
|
||||
Reference in New Issue
Block a user