From: Steinar H. Gunderson Date: Thu, 5 Apr 2018 07:41:16 +0000 (+0200) Subject: Use C++11 right angle brackets. X-Git-Tag: 1.4.0~35 X-Git-Url: https://git.sesse.net/?p=cubemap;a=commitdiff_plain;h=a0629a862bbac969ff858d8b4c3e78bd299aa721 Use C++11 right angle brackets. --- 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;