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

Unified Diff: net/http2/hpack/huffman/http2_hpack_huffman_decoder.cc

Issue 2691393002: Fix auto raw pointer deduction on linux (Closed)
Patch Set: rebase Created 3 years, 10 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 | « net/http2/hpack/decoder/hpack_decoder_tables.cc ('k') | net/proxy/mojo_proxy_resolver_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http2/hpack/huffman/http2_hpack_huffman_decoder.cc
diff --git a/net/http2/hpack/huffman/http2_hpack_huffman_decoder.cc b/net/http2/hpack/huffman/http2_hpack_huffman_decoder.cc
index 45c32c08b229a526746e7a91a70a3277c460ebba..189d34a8ac7e50886edd6a13222e4f803e53b298 100644
--- a/net/http2/hpack/huffman/http2_hpack_huffman_decoder.cc
+++ b/net/http2/hpack/huffman/http2_hpack_huffman_decoder.cc
@@ -368,7 +368,7 @@ size_t HuffmanBitBuffer::AppendBytes(StringPiece input) {
// Top up |accumulator_| until there isn't room for a whole byte.
size_t bytes_used = 0;
- auto ptr = reinterpret_cast<const uint8_t*>(input.data());
+ auto* ptr = reinterpret_cast<const uint8_t*>(input.data());
do {
auto b = static_cast<HuffmanAccumulator>(*ptr++);
free_cnt -= 8;
« no previous file with comments | « net/http2/hpack/decoder/hpack_decoder_tables.cc ('k') | net/proxy/mojo_proxy_resolver_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698