From 8e61bedf634603ced3381ae38e1dbe610eac1c8d Mon Sep 17 00:00:00 2001 From: sfja Date: Mon, 23 Mar 2026 19:35:26 +0100 Subject: [PATCH] .hpp -> .h as CCG SF.1 --- backend/src/http.cpp | 2 +- backend/src/{http.hpp => http.h} | 2 +- backend/src/tcp.cpp | 2 +- backend/src/{tcp.hpp => tcp.h} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename backend/src/{http.hpp => http.h} (97%) rename backend/src/{tcp.hpp => tcp.h} (100%) diff --git a/backend/src/http.cpp b/backend/src/http.cpp index fbec6a8..2cfbffd 100644 --- a/backend/src/http.cpp +++ b/backend/src/http.cpp @@ -1,4 +1,4 @@ -#include "http.hpp" +#include "http.h" namespace mst { auto HttpServer::start() -> Result diff --git a/backend/src/http.hpp b/backend/src/http.h similarity index 97% rename from backend/src/http.hpp rename to backend/src/http.h index 87daf70..bac27b4 100644 --- a/backend/src/http.hpp +++ b/backend/src/http.h @@ -1,6 +1,6 @@ #pragma once -#include "tcp.hpp" +#include "tcp.h" #include #include #include diff --git a/backend/src/tcp.cpp b/backend/src/tcp.cpp index 1000ecb..596e4b7 100644 --- a/backend/src/tcp.cpp +++ b/backend/src/tcp.cpp @@ -1,4 +1,4 @@ -#include "tcp.hpp" +#include "tcp.h" #include #include #include diff --git a/backend/src/tcp.hpp b/backend/src/tcp.h similarity index 100% rename from backend/src/tcp.hpp rename to backend/src/tcp.h