From 5d2be98cf2fefdb22ebf2cd113d5789cb874244b Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Sat, 13 Jun 2015 19:48:25 -0700 Subject: [PATCH] Fix -Wsign-conversion warning --- include/mapnik/feature_style_processor_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mapnik/feature_style_processor_impl.hpp b/include/mapnik/feature_style_processor_impl.hpp index d20e6a501..42313f3ca 100644 --- a/include/mapnik/feature_style_processor_impl.hpp +++ b/include/mapnik/feature_style_processor_impl.hpp @@ -224,7 +224,7 @@ void feature_style_processor::prepare_layer(layer_rendering_material std::vector const& style_names = lay.styles(); - unsigned int num_styles = style_names.size(); + std::size_t num_styles = style_names.size(); if (num_styles == 0) { MAPNIK_LOG_DEBUG(feature_style_processor)