Skip to content
Snippets Groups Projects
Commit 68d98acb authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-418: In 64 bits, storing size_t in an int is a no-no.

parent 222919be
Branches
Tags
No related merge requests found
...@@ -124,8 +124,8 @@ class LL_COMMON_API LLDependenciesBase ...@@ -124,8 +124,8 @@ class LL_COMMON_API LLDependenciesBase
virtual std::string describe(bool full=true) const; virtual std::string describe(bool full=true) const;
protected: protected:
typedef std::vector< std::pair<int, int> > EdgeList; typedef std::vector< std::pair<std::size_t, std::size_t> > EdgeList;
typedef std::vector<int> VertexList; typedef std::vector<std::size_t> VertexList;
VertexList topo_sort(int vertices, const EdgeList& edges) const; VertexList topo_sort(int vertices, const EdgeList& edges) const;
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment