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

Unified Diff: net/quic/quic_one_block_arena.h

Issue 1670863002: QUIC - minor cleanup changes to keep code in sync with the internal source. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0204
Patch Set: Created 4 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/quic/quic_multipath_transmissions_map.h ('k') | net/quic/quic_packet_creator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_one_block_arena.h
diff --git a/net/quic/quic_one_block_arena.h b/net/quic/quic_one_block_arena.h
index 6a2e6c894f3b8e32004a3e3b93b3134be6f576c4..37fc7307902f7f091a55dd4cc1133a1fd458c997 100644
--- a/net/quic/quic_one_block_arena.h
+++ b/net/quic/quic_one_block_arena.h
@@ -40,7 +40,7 @@ class QuicOneBlockArena {
// Actual storage.
// Subtle/annoying: the value '8' must be coded explicitly into the alignment
- // declaration.
+ // declaration for MSVC.
QUIC_ALIGNED(8) char storage_[ArenaSize];
// Current offset into the storage.
uint32_t offset_;
@@ -49,8 +49,7 @@ class QuicOneBlockArena {
};
template <uint32_t ArenaSize>
-QuicOneBlockArena<ArenaSize>::QuicOneBlockArena()
- : offset_(0) {}
+QuicOneBlockArena<ArenaSize>::QuicOneBlockArena() : offset_(0) {}
template <uint32_t ArenaSize>
template <typename T, typename... Args>
« no previous file with comments | « net/quic/quic_multipath_transmissions_map.h ('k') | net/quic/quic_packet_creator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698