diff --git a/src/http_handler.hpp b/src/http_handler.hpp index 01af22c..67bb475 100644 --- a/src/http_handler.hpp +++ b/src/http_handler.hpp @@ -1,10 +1,10 @@ #pragma once -#include "ThreadPipeline.h" #include "connection.hpp" #include "connection_handler.hpp" #include "perfetto_categories.hpp" #include "server.hpp" +#include "thread_pipeline.hpp" #include #include #include diff --git a/src/ThreadPipeline.h b/src/thread_pipeline.hpp similarity index 100% rename from src/ThreadPipeline.h rename to src/thread_pipeline.hpp diff --git a/tests/test_server_connection_return.cpp b/tests/test_server_connection_return.cpp index 5e9674c..c73d3a9 100644 --- a/tests/test_server_connection_return.cpp +++ b/tests/test_server_connection_return.cpp @@ -1,4 +1,4 @@ -#include "../src/ThreadPipeline.h" +#include "../src/thread_pipeline.hpp" #include "config.hpp" #include "connection.hpp" #include "perfetto_categories.hpp"