1diff --git a/third_party/agg23/agg_basics.h b/third_party/agg23/agg_basics.h 2index fc155561e..2a1c2af2f 100644 3--- a/third_party/agg23/agg_basics.h 4+++ b/third_party/agg23/agg_basics.h 5@@ -266,14 +266,6 @@ struct point_type { 6 point_type() {} 7 point_type(float x_, float y_, unsigned flag_ = 0) : x(x_), y(y_), flag(flag_) {} 8 }; 9-struct point_type_flag : public point_type { 10- unsigned flag; 11- point_type_flag() 12- { 13- flag = 0; 14- } 15- point_type_flag(float x_, float y_, unsigned flag_ = 0) : point_type(x_, y_), flag(flag_) {} 16-}; 17 struct vertex_type { 18 float x, y; 19 unsigned cmd; 20