avoid clang++ -pedantic compiler warnings
This commit is contained in:
parent
d148be9fa2
commit
84ea9e6101
16 changed files with 34 additions and 34 deletions
|
@ -310,11 +310,11 @@ bool has_pycairo()
|
|||
}
|
||||
|
||||
|
||||
BOOST_PYTHON_FUNCTION_OVERLOADS(load_map_overloads, load_map, 2, 3);
|
||||
BOOST_PYTHON_FUNCTION_OVERLOADS(load_map_string_overloads, load_map_string, 2, 4);
|
||||
BOOST_PYTHON_FUNCTION_OVERLOADS(save_map_overloads, save_map, 2, 3);
|
||||
BOOST_PYTHON_FUNCTION_OVERLOADS(save_map_to_string_overloads, save_map_to_string, 1, 2);
|
||||
BOOST_PYTHON_FUNCTION_OVERLOADS(render_overloads, render, 2, 5);
|
||||
BOOST_PYTHON_FUNCTION_OVERLOADS(load_map_overloads, load_map, 2, 3)
|
||||
BOOST_PYTHON_FUNCTION_OVERLOADS(load_map_string_overloads, load_map_string, 2, 4)
|
||||
BOOST_PYTHON_FUNCTION_OVERLOADS(save_map_overloads, save_map, 2, 3)
|
||||
BOOST_PYTHON_FUNCTION_OVERLOADS(save_map_to_string_overloads, save_map_to_string, 1, 2)
|
||||
BOOST_PYTHON_FUNCTION_OVERLOADS(render_overloads, render, 2, 5)
|
||||
|
||||
BOOST_PYTHON_MODULE(_mapnik2)
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@ template <class T>
|
|||
const std::string get_svg_transform(T& symbolizer)
|
||||
{
|
||||
return symbolizer.get_transform_string();
|
||||
};
|
||||
}
|
||||
|
||||
template <class T>
|
||||
void set_svg_transform(T& symbolizer, std::string const& transform_wkt)
|
||||
|
@ -52,7 +52,7 @@ void set_svg_transform(T& symbolizer, std::string const& transform_wkt)
|
|||
mapnik::transform_type matrix;
|
||||
tr.store_to(&matrix[0]);
|
||||
symbolizer.set_transform(matrix);
|
||||
};
|
||||
}
|
||||
|
||||
} // end of namespace mapnik
|
||||
|
||||
|
|
|
@ -33,4 +33,4 @@ struct ellipsoid
|
|||
};
|
||||
}
|
||||
|
||||
#endif // MAPNIK_ELLIPSOID_HPP
|
||||
#endif // MAPNIK_ELLIPSOID_HPP
|
||||
|
|
|
@ -54,4 +54,4 @@ private:
|
|||
};
|
||||
}
|
||||
|
||||
#endif //MAPNIK_FILTER_FEATURESET_HPP
|
||||
#endif //MAPNIK_FILTER_FEATURESET_HPP
|
||||
|
|
|
@ -242,5 +242,5 @@ template <typename Locator, typename Detector> box2d<double> markers_placement<L
|
|||
|
||||
return box2d<double>(x1_, y1_, x2_, y2_);
|
||||
}
|
||||
}; /* end namespace */
|
||||
} /* end namespace */
|
||||
#endif // MARKERS_PLACEMENT_HPP
|
||||
|
|
|
@ -49,7 +49,7 @@ void metawriter_save(
|
|||
boost::property_tree::ptree &pt,
|
||||
bool explicit_defaults);
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* METAWRITER_FACTORY_HPP */
|
||||
|
||||
|
|
|
@ -72,7 +72,7 @@ protected:
|
|||
enum {
|
||||
HEADER_NOT_WRITTEN = -1,
|
||||
STOPPED = -2,
|
||||
STARTED = 0,
|
||||
STARTED = 0
|
||||
};
|
||||
/** Features written. */
|
||||
int count_;
|
||||
|
@ -140,6 +140,6 @@ protected:
|
|||
/** Shared pointer to metawriter_json object. */
|
||||
typedef boost::shared_ptr<metawriter_json> metawriter_json_ptr;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -215,15 +215,15 @@ struct name_trait
|
|||
};
|
||||
|
||||
#define DEFINE_NAME_TRAIT( type ) \
|
||||
DEFINE_NAME_TRAIT_WITH_NAME( type, #type );
|
||||
DEFINE_NAME_TRAIT_WITH_NAME( type, #type )
|
||||
|
||||
DEFINE_NAME_TRAIT( double );
|
||||
DEFINE_NAME_TRAIT( float );
|
||||
DEFINE_NAME_TRAIT( unsigned );
|
||||
DEFINE_NAME_TRAIT( boolean );
|
||||
DEFINE_NAME_TRAIT_WITH_NAME( int, "integer" );
|
||||
DEFINE_NAME_TRAIT_WITH_NAME( std::string, "string" );
|
||||
DEFINE_NAME_TRAIT_WITH_NAME( color, "color" );
|
||||
DEFINE_NAME_TRAIT( double )
|
||||
DEFINE_NAME_TRAIT( float )
|
||||
DEFINE_NAME_TRAIT( unsigned )
|
||||
DEFINE_NAME_TRAIT( boolean )
|
||||
DEFINE_NAME_TRAIT_WITH_NAME( int, "integer" )
|
||||
DEFINE_NAME_TRAIT_WITH_NAME( std::string, "string" )
|
||||
DEFINE_NAME_TRAIT_WITH_NAME( color, "color" )
|
||||
|
||||
template <typename ENUM, int MAX>
|
||||
struct name_trait< mapnik::enumeration<ENUM, MAX> >
|
||||
|
|
|
@ -36,7 +36,7 @@ typedef enum {
|
|||
SOUTHEAST,
|
||||
NORTHWEST,
|
||||
SOUTHWEST,
|
||||
EXACT_POSITION,
|
||||
EXACT_POSITION
|
||||
} directions_t;
|
||||
|
||||
/** Simple placement strategy.
|
||||
|
|
|
@ -10,7 +10,7 @@ static const char * angle_mode_strings[] = {
|
|||
""
|
||||
};
|
||||
|
||||
IMPLEMENT_ENUM( angle_mode_e, angle_mode_strings );
|
||||
IMPLEMENT_ENUM( angle_mode_e, angle_mode_strings )
|
||||
|
||||
text_path_ptr glyph_symbolizer::get_text_path(face_set_ptr const& faces,
|
||||
Feature const& feature) const
|
||||
|
|
|
@ -33,7 +33,7 @@ static const char * gradient_strings[] = {
|
|||
""
|
||||
};
|
||||
|
||||
IMPLEMENT_ENUM( gradient_e, gradient_strings );
|
||||
IMPLEMENT_ENUM( gradient_e, gradient_strings )
|
||||
|
||||
|
||||
gradient::gradient()
|
||||
|
|
|
@ -32,7 +32,7 @@ static const char * marker_placement_strings[] = {
|
|||
""
|
||||
};
|
||||
|
||||
IMPLEMENT_ENUM( marker_placement_e, marker_placement_strings );
|
||||
IMPLEMENT_ENUM( marker_placement_e, marker_placement_strings )
|
||||
|
||||
|
||||
static const char * marker_type_strings[] = {
|
||||
|
@ -41,7 +41,7 @@ static const char * marker_type_strings[] = {
|
|||
""
|
||||
};
|
||||
|
||||
IMPLEMENT_ENUM( marker_type_e, marker_type_strings );
|
||||
IMPLEMENT_ENUM( marker_type_e, marker_type_strings )
|
||||
|
||||
markers_symbolizer::markers_symbolizer()
|
||||
: symbolizer_with_image(path_expression_ptr(new path_expression)),
|
||||
|
|
|
@ -358,4 +358,4 @@ path_expression_ptr metawriter_json::get_filename() const
|
|||
return fn_;
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ static const char * point_placement_strings[] = {
|
|||
""
|
||||
};
|
||||
|
||||
IMPLEMENT_ENUM( point_placement_e, point_placement_strings );
|
||||
IMPLEMENT_ENUM( point_placement_e, point_placement_strings )
|
||||
|
||||
point_symbolizer::point_symbolizer()
|
||||
: symbolizer_with_image(path_expression_ptr(new path_expression)), // FIXME
|
||||
|
|
|
@ -33,7 +33,7 @@ static const char * pattern_alignment_strings[] = {
|
|||
""
|
||||
};
|
||||
|
||||
IMPLEMENT_ENUM( pattern_alignment_e, pattern_alignment_strings );
|
||||
IMPLEMENT_ENUM( pattern_alignment_e, pattern_alignment_strings )
|
||||
|
||||
polygon_pattern_symbolizer::polygon_pattern_symbolizer(path_expression_ptr file)
|
||||
: symbolizer_with_image(file), symbolizer_base(),
|
||||
|
|
|
@ -39,7 +39,7 @@ static const char * label_placement_strings[] = {
|
|||
};
|
||||
|
||||
|
||||
IMPLEMENT_ENUM( label_placement_e, label_placement_strings );
|
||||
IMPLEMENT_ENUM( label_placement_e, label_placement_strings )
|
||||
|
||||
static const char * vertical_alignment_strings[] = {
|
||||
"top",
|
||||
|
@ -50,7 +50,7 @@ static const char * vertical_alignment_strings[] = {
|
|||
};
|
||||
|
||||
|
||||
IMPLEMENT_ENUM( vertical_alignment_e, vertical_alignment_strings );
|
||||
IMPLEMENT_ENUM( vertical_alignment_e, vertical_alignment_strings )
|
||||
|
||||
static const char * horizontal_alignment_strings[] = {
|
||||
"left",
|
||||
|
@ -61,7 +61,7 @@ static const char * horizontal_alignment_strings[] = {
|
|||
};
|
||||
|
||||
|
||||
IMPLEMENT_ENUM( horizontal_alignment_e, horizontal_alignment_strings );
|
||||
IMPLEMENT_ENUM( horizontal_alignment_e, horizontal_alignment_strings )
|
||||
|
||||
static const char * justify_alignment_strings[] = {
|
||||
"left",
|
||||
|
@ -71,7 +71,7 @@ static const char * justify_alignment_strings[] = {
|
|||
};
|
||||
|
||||
|
||||
IMPLEMENT_ENUM( justify_alignment_e, justify_alignment_strings );
|
||||
IMPLEMENT_ENUM( justify_alignment_e, justify_alignment_strings )
|
||||
|
||||
static const char * text_transform_strings[] = {
|
||||
"none",
|
||||
|
@ -82,7 +82,7 @@ static const char * text_transform_strings[] = {
|
|||
};
|
||||
|
||||
|
||||
IMPLEMENT_ENUM( text_transform_e, text_transform_strings );
|
||||
IMPLEMENT_ENUM( text_transform_e, text_transform_strings )
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue