File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed
Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -40,11 +40,6 @@ using mapnik::colorizer_stop;
4040using mapnik::colorizer_stops;
4141using mapnik::colorizer_mode_enum;
4242using mapnik::color;
43- using mapnik::colorizer_mode_enum::COLORIZER_INHERIT;
44- using mapnik::colorizer_mode_enum::COLORIZER_LINEAR;
45- using mapnik::colorizer_mode_enum::COLORIZER_DISCRETE;
46- using mapnik::colorizer_mode_enum::COLORIZER_EXACT;
47-
4843
4944namespace {
5045void add_stop (raster_colorizer_ptr & rc, colorizer_stop & stop)
@@ -196,10 +191,10 @@ void export_raster_colorizer()
196191 ;
197192
198193 enum_<colorizer_mode_enum>(" ColorizerMode" )
199- .value (" COLORIZER_INHERIT" , COLORIZER_INHERIT)
200- .value (" COLORIZER_LINEAR" , COLORIZER_LINEAR)
201- .value (" COLORIZER_DISCRETE" , COLORIZER_DISCRETE)
202- .value (" COLORIZER_EXACT" , COLORIZER_EXACT)
194+ .value (" COLORIZER_INHERIT" , colorizer_mode_enum:: COLORIZER_INHERIT)
195+ .value (" COLORIZER_LINEAR" , colorizer_mode_enum:: COLORIZER_LINEAR)
196+ .value (" COLORIZER_DISCRETE" , colorizer_mode_enum:: COLORIZER_DISCRETE)
197+ .value (" COLORIZER_EXACT" , colorizer_mode_enum:: COLORIZER_EXACT)
203198 .export_values ()
204199 ;
205200
You can’t perform that action at this time.
0 commit comments