Apply clang-format fixes

This commit is contained in:
github-actions[bot] 2025-09-10 15:58:28 +00:00
parent 6989521a31
commit ced176fc7d
3 changed files with 8 additions and 7 deletions

View File

@ -2,7 +2,7 @@
int main() int main()
{ {
MyModule module; MyModule module;
module.doSomething(); module.doSomething();
return 0; return 0;
} }

View File

@ -4,5 +4,5 @@
void MyModule::doSomething() void MyModule::doSomething()
{ {
std::cout << "Doing something!" << std::endl; std::cout << "Doing something!" << std::endl;
} }

View File

@ -1,6 +1,7 @@
#pragma once #pragma once
class MyModule { class MyModule
public: {
void doSomething(); public:
void doSomething();
}; };