summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2016-12-01 08:44:52 -0500
committerNat Goodspeed <nat@lindenlab.com>2016-12-01 08:44:52 -0500
commit68d98acb920a49880662db0d20ccdf52edbc0151 (patch)
treeb2733d8d97c119a3335a5900a8cc9a90136b0c70
parent222919be87386af66bba836fbb9495b64b4007f4 (diff)
DRTVWR-418: In 64 bits, storing size_t in an int is a no-no.
-rw-r--r--indra/llcommon/lldependencies.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/lldependencies.h b/indra/llcommon/lldependencies.h
index de214a8943..db2bbab8b0 100644
--- a/indra/llcommon/lldependencies.h
+++ b/indra/llcommon/lldependencies.h
@@ -124,8 +124,8 @@ public:
virtual std::string describe(bool full=true) const;
protected:
- typedef std::vector< std::pair<int, int> > EdgeList;
- typedef std::vector<int> VertexList;
+ typedef std::vector< std::pair<std::size_t, std::size_t> > EdgeList;
+ typedef std::vector<std::size_t> VertexList;
VertexList topo_sort(int vertices, const EdgeList& edges) const;
/**