diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2024-04-18 21:13:39 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2024-04-18 21:13:39 +0200 |
commit | 7b27c1106d77f27808639336610caeaf49f5274c (patch) | |
tree | d971b1982372a47a19d095480e9f16986b0af27d /include/erebos | |
parent | ab12565f52081c147d9f3cfb2ba4768379218c18 (diff) |
Avoid using std::deque with incomplete type
Only some containers are allowed by the standard to be declared with
incomplete types, deque is not, for vector it is ok.
Diffstat (limited to 'include/erebos')
-rw-r--r-- | include/erebos/message.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/erebos/message.h b/include/erebos/message.h index b52b84b..508aa23 100644 --- a/include/erebos/message.h +++ b/include/erebos/message.h @@ -4,7 +4,6 @@ #include <erebos/service.h> #include <condition_variable> -#include <deque> #include <functional> #include <memory> #include <mutex> @@ -15,7 +14,6 @@ namespace erebos { using std::condition_variable; -using std::deque; using std::mutex; using std::tuple; using std::unique_ptr; @@ -160,7 +158,7 @@ private: mutex peerSyncMutex; condition_variable peerSyncCond; bool peerSyncRun; - deque<tuple<DirectMessageThread, Peer>> peerSyncQueue; + vector<tuple<DirectMessageThread, Peer>> peerSyncQueue; std::thread peerSyncThread; Watched<DirectMessageThreads> watched; |