diff --git a/webserv/mymodule/MyModule.cpp b/webserv/mymodule/MyModule.cpp index 2d110cb..6957a97 100644 --- a/webserv/mymodule/MyModule.cpp +++ b/webserv/mymodule/MyModule.cpp @@ -2,6 +2,7 @@ #include -void MyModule::doSomething() { - std::cout << "Doing really 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 7e23057..c5de43c 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