From f2a9a6128c161208d6248dccd82163b88b11a5fb Mon Sep 17 00:00:00 2001 From: whaffman Date: Wed, 10 Sep 2025 18:12:46 +0200 Subject: [PATCH] test action --- webserv/mymodule/MyModule.cpp | 5 ++--- webserv/mymodule/MyModule.hpp | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/webserv/mymodule/MyModule.cpp b/webserv/mymodule/MyModule.cpp index 480ce2d..2d110cb 100644 --- a/webserv/mymodule/MyModule.cpp +++ b/webserv/mymodule/MyModule.cpp @@ -2,7 +2,6 @@ #include -void MyModule::doSomething() -{ - std::cout << "Doing something!" << std::endl; +void MyModule::doSomething() { + std::cout << "Doing really something!" << std::endl; } \ No newline at end of file diff --git a/webserv/mymodule/MyModule.hpp b/webserv/mymodule/MyModule.hpp index c5de43c..7e23057 100644 --- a/webserv/mymodule/MyModule.hpp +++ b/webserv/mymodule/MyModule.hpp @@ -3,5 +3,5 @@ class MyModule { public: - void doSomething(); + void doSomething(); }; \ No newline at end of file