Browse Source

Cleaned up includes

Paul-Louis Ageneau 3 years ago
parent
commit
6d52c0e876
2 changed files with 4 additions and 4 deletions
  1. 4 3
      src/impl/pollservice.hpp
  2. 0 1
      src/impl/tcptransport.hpp

+ 4 - 3
src/impl/pollservice.hpp

@@ -19,18 +19,19 @@
 #ifndef RTC_IMPL_POLL_SERVICE_H
 #define RTC_IMPL_POLL_SERVICE_H
 
-#include "pollinterrupter.hpp"
-#include "socket.hpp"
 #include "common.hpp"
 #include "internals.hpp"
+#include "pollinterrupter.hpp"
+#include "socket.hpp"
 
 #if RTC_ENABLE_WEBSOCKET
 
 #include <chrono>
+#include <functional>
 #include <mutex>
 #include <thread>
 #include <unordered_map>
-#include <functional>
+#include <vector>
 
 namespace rtc::impl {
 

+ 0 - 1
src/impl/tcptransport.hpp

@@ -28,7 +28,6 @@
 #if RTC_ENABLE_WEBSOCKET
 
 #include <mutex>
-#include <future>
 
 namespace rtc::impl {