Skip to content

Commit 0e8f668

Browse files
committed
Add missing includes
1 parent 3437fee commit 0e8f668

5 files changed

Lines changed: 4 additions & 1 deletion

File tree

include/web_video_server/base_image_streamer.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include <chrono>
3434
#include <memory>
3535
#include <string>
36+
#include <vector>
3637

3738
#include "async_web_server_cpp/http_connection.hpp"
3839
#include "async_web_server_cpp/http_request.hpp"

include/web_video_server/base_image_transport_streamer.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include <chrono>
3333
#include <mutex>
3434
#include <string>
35+
#include <vector>
3536

3637
#include <opencv2/core/mat.hpp>
3738

include/web_video_server/streamers/ros_compressed_streamer.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include <memory>
3535
#include <mutex>
3636
#include <string>
37+
#include <vector>
3738

3839
#include "async_web_server_cpp/http_connection.hpp"
3940
#include "async_web_server_cpp/http_request.hpp"

include/web_video_server/streamers/vp9_streamer.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#pragma once
3131

3232
#include <memory>
33+
#include <string>
3334

3435
#include "async_web_server_cpp/http_connection.hpp"
3536
#include "async_web_server_cpp/http_request.hpp"

src/web_video_server.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,6 @@ bool WebVideoServer::handle_list_streams(
363363
}
364364
connection->write("</ul>");
365365
connection->write("</li>");
366-
367366
}
368367
connection->write("</ul></body></html>");
369368
return true;

0 commit comments

Comments
 (0)