From ced176fc7dad9853efd25b6cc0722f8165a784f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 10 Sep 2025 15:58:28 +0000 Subject: [PATCH] Apply clang-format fixes --- webserv/main.cpp | 6 +++--- webserv/mymodule/MyModule.cpp | 2 +- webserv/mymodule/MyModule.hpp | 7 ++++--- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/webserv/main.cpp b/webserv/main.cpp index adfe0f1..51a0033 100644 --- a/webserv/main.cpp +++ b/webserv/main.cpp @@ -2,7 +2,7 @@ int main() { - MyModule module; - module.doSomething(); - return 0; + MyModule module; + module.doSomething(); + return 0; } \ No newline at end of file diff --git a/webserv/mymodule/MyModule.cpp b/webserv/mymodule/MyModule.cpp index 583103c..480ce2d 100644 --- a/webserv/mymodule/MyModule.cpp +++ b/webserv/mymodule/MyModule.cpp @@ -4,5 +4,5 @@ void MyModule::doSomething() { - std::cout << "Doing something!" << std::endl; + std::cout << "Doing something!" << std::endl; } \ No newline at end of file diff --git a/webserv/mymodule/MyModule.hpp b/webserv/mymodule/MyModule.hpp index f4ba355..c5de43c 100644 --- a/webserv/mymodule/MyModule.hpp +++ b/webserv/mymodule/MyModule.hpp @@ -1,6 +1,7 @@ #pragma once -class MyModule { -public: - void doSomething(); +class MyModule +{ + public: + void doSomething(); }; \ No newline at end of file