From 0ccdd4b6ad83ca611a36b898156ef88c33e6a9d1 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 7 Jan 2015 12:26:09 +0100 Subject: [PATCH] fix implicit conversion that _may_ lose integer precision --- algorithms/tiny_components.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms/tiny_components.hpp b/algorithms/tiny_components.hpp index 9fb357c10..04f380a1b 100644 --- a/algorithms/tiny_components.hpp +++ b/algorithms/tiny_components.hpp @@ -80,7 +80,7 @@ class TarjanSCC std::shared_ptr m_node_based_graph; std::unordered_set barrier_node_set; RestrictionMap m_restriction_map; - unsigned size_one_counter; + std::size_t size_one_counter; public: template