Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: third_party/agg23/0001-gcc-warning.patch

Issue 1981593002: Fix GCC warnings to be ready for GCC standalone build (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp ('k') | third_party/agg23/README.pdfium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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;
OLDNEW
« no previous file with comments | « fpdfsdk/fpdfxfa/fpdfxfa_doc.cpp ('k') | third_party/agg23/README.pdfium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698