From f25e9bb01fc7a3a0693cb5f6d6857e6ca312c27c Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Sun, 24 May 2020 08:51:17 -0400 Subject: [PATCH] use std::list here too --- llarp/path/ihophandler.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llarp/path/ihophandler.hpp b/llarp/path/ihophandler.hpp index ac76d93c9..514b5eac6 100644 --- a/llarp/path/ihophandler.hpp +++ b/llarp/path/ihophandler.hpp @@ -26,7 +26,7 @@ namespace llarp struct IHopHandler { using TrafficEvent_t = std::pair, TunnelNonce>; - using TrafficQueue_t = std::vector; + using TrafficQueue_t = std::list; using TrafficQueue_ptr = std::shared_ptr; virtual ~IHopHandler() = default;