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;
40
40
using mapnik::colorizer_stops;
41
41
using mapnik::colorizer_mode_enum;
42
42
using 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
-
48
43
49
44
namespace {
50
45
void add_stop (raster_colorizer_ptr & rc, colorizer_stop & stop)
@@ -196,10 +191,10 @@ void export_raster_colorizer()
196
191
;
197
192
198
193
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)
203
198
.export_values ()
204
199
;
205
200
You can’t perform that action at this time.
0 commit comments