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

Unified Diff: third_party/woff2/src/transform.cc

Issue 1913773002: Update woff2 to 2bc6acf (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/woff2/src/glyph.cc ('k') | third_party/woff2/src/woff2_dec.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/woff2/src/transform.cc
diff --git a/third_party/woff2/src/transform.cc b/third_party/woff2/src/transform.cc
index b7b0cf0337ef7dae5f7ae2d10e56cc28976fb765..2ad8b163c3c82773e2e33b267089ef36ce9975eb 100644
--- a/third_party/woff2/src/transform.cc
+++ b/third_party/woff2/src/transform.cc
@@ -39,7 +39,7 @@ void WriteBytes(std::vector<uint8_t>* out, const uint8_t* data, size_t len) {
}
void WriteBytes(std::vector<uint8_t>* out, const std::vector<uint8_t>& in) {
- for (int i = 0; i < in.size(); ++i) {
+ for (size_t i = 0; i < in.size(); ++i) {
out->push_back(in[i]);
}
}
« no previous file with comments | « third_party/woff2/src/glyph.cc ('k') | third_party/woff2/src/woff2_dec.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698