Apply clang-format fixes
This commit is contained in:
parent
6989521a31
commit
ced176fc7d
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
MyModule module;
|
MyModule module;
|
||||||
module.doSomething();
|
module.doSomething();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -4,5 +4,5 @@
|
|||||||
|
|
||||||
void MyModule::doSomething()
|
void MyModule::doSomething()
|
||||||
{
|
{
|
||||||
std::cout << "Doing something!" << std::endl;
|
std::cout << "Doing something!" << std::endl;
|
||||||
}
|
}
|
||||||
@ -1,6 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
class MyModule {
|
class MyModule
|
||||||
public:
|
{
|
||||||
void doSomething();
|
public:
|
||||||
|
void doSomething();
|
||||||
};
|
};
|
||||||
Loading…
Reference in New Issue
Block a user