summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quic/core/packet_number_indexed_queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/third_party/quiche/src/quic/core/packet_number_indexed_queue.h')
-rw-r--r--chromium/net/third_party/quiche/src/quic/core/packet_number_indexed_queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/net/third_party/quiche/src/quic/core/packet_number_indexed_queue.h b/chromium/net/third_party/quiche/src/quic/core/packet_number_indexed_queue.h
index 695ff7d91ec..470a58c1f11 100644
--- a/chromium/net/third_party/quiche/src/quic/core/packet_number_indexed_queue.h
+++ b/chromium/net/third_party/quiche/src/quic/core/packet_number_indexed_queue.h
@@ -35,7 +35,7 @@ namespace quic {
// Because of that, it is not a general-purpose container and should not be used
// as one.
template <typename T>
-class PacketNumberIndexedQueue {
+class QUIC_NO_EXPORT PacketNumberIndexedQueue {
public:
PacketNumberIndexedQueue() : number_of_present_entries_(0) {}
@@ -86,7 +86,7 @@ class PacketNumberIndexedQueue {
private:
// Wrapper around T used to mark whether the entry is actually in the map.
- struct EntryWrapper : T {
+ struct QUIC_NO_EXPORT EntryWrapper : T {
bool present;
EntryWrapper() : present(false) {}