Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 diff --git a/third_party/agg23/agg_path_storage.h b/third_party/agg23/agg_path_s torage.h | |
| 2 index dc13851..35d9ab0 100644 | |
| 3 --- a/third_party/agg23/agg_path_storage.h | |
| 4 +++ b/third_party/agg23/agg_path_storage.h | |
| 5 @@ -40,7 +40,7 @@ public: | |
| 6 { | |
| 7 return (m_vertex_idx < m_path->total_vertices()) ? | |
| 8 m_path->vertex(m_vertex_idx++, x, y) : | |
| 9 - path_cmd_stop; | |
|
Lei Zhang
2016/05/13 21:52:16
This doesn't match the actual change. Regenerate t
Wei Li
2016/05/13 23:22:34
Done.
| |
| 10 + static_cast<unsigned>(path_cmd_stop); | |
| 11 } | |
| 12 private: | |
| 13 const path_storage* m_path; | |
| OLD | NEW |