From 9eafae457b74fb874651768d84e1ecb3d695953f Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Fri, 22 Aug 2025 18:08:22 -0400 Subject: [PATCH] ThreadPipeline.h -> thread_pipeline.hpp --- src/http_handler.hpp | 2 +- src/{ThreadPipeline.h => thread_pipeline.hpp} | 0 tests/test_server_connection_return.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/{ThreadPipeline.h => thread_pipeline.hpp} (100%) 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"