From a0629a862bbac969ff858d8b4c3e78bd299aa721 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 5 Apr 2018 09:41:16 +0200 Subject: [PATCH] Use C++11 right angle brackets. --- server.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.h b/server.h index 1e6f44a..40e9f75 100644 --- a/server.h +++ b/server.h @@ -84,7 +84,7 @@ private: // can be taken a lot of the time. // // Protected by . - std::vector > queued_add_clients; + std::vector> queued_add_clients; // All variables below this line are protected by the mutex. mutable pthread_mutex_t mutex; @@ -112,7 +112,7 @@ private: // This means that when reading it, we need to check if the client it // describes is still exists (ie., that the fd still exists, and that // the timespec matches). - std::queue > clients_ordered_by_connect_time; + std::queue> clients_ordered_by_connect_time; // Used for epoll implementation (obviously). int epoll_fd; -- 2.39.2