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()
{
MyModule module;
module.doSomething();
return 0;
MyModule module;
module.doSomething();
return 0;
}

View File

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

View File

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