Apply clang-format fixes

This commit is contained in:
github-actions[bot] 2025-09-10 16:13:25 +00:00
parent f2a9a6128c
commit eb1b68f698
2 changed files with 4 additions and 3 deletions

View File

@ -2,6 +2,7 @@
#include <iostream> #include <iostream>
void MyModule::doSomething() { void MyModule::doSomething()
std::cout << "Doing really something!" << std::endl; {
std::cout << "Doing really something!" << std::endl;
} }

View File

@ -3,5 +3,5 @@
class MyModule class MyModule
{ {
public: public:
void doSomething(); void doSomething();
}; };