fix implicit conversion that _may_ lose integer precision

This commit is contained in:
Dennis Luxen 2015-01-07 12:26:09 +01:00
parent 66fc676858
commit 0ccdd4b6ad

View File

@ -80,7 +80,7 @@ class TarjanSCC
std::shared_ptr<GraphT> m_node_based_graph;
std::unordered_set<NodeID> barrier_node_set;
RestrictionMap m_restriction_map;
unsigned size_one_counter;
std::size_t size_one_counter;
public:
template<class ContainerT>