Update to 1.10.0-beta1

This commit is contained in:
dP
2019-10-31 22:24:28 +03:00
parent b84a475e14
commit 599ccf0c2b
1470 changed files with 354219 additions and 16795 deletions

View File

@@ -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.