Skip to content

Commit 858f10f

Browse files
committed
Apply clang-tidy to Main.cpp
Signed-off-by: Stefan Marr <git@stefan-marr.de>
1 parent 5540153 commit 858f10f

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

src/Main.cpp

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,15 @@
2222
THE SOFTWARE.
2323
*/
2424

25-
#include <fstream>
25+
#include <cstdint>
2626
#include <iostream>
2727

28-
#include "compiler/ClassGenerationContext.h"
29-
#include "memory/Heap.h"
3028
#include "misc/defs.h"
29+
#include "vm/Print.h"
3130
#include "vm/Universe.h"
32-
#include "vmobjects/ObjectFormats.h"
33-
#include "vmobjects/VMArray.h"
34-
#include "vmobjects/VMMethod.h"
35-
#include "vmobjects/VMObject.h"
36-
#include "vmobjects/VMString.h"
3731

3832
int32_t main(int32_t argc, char** argv) {
39-
cout << "This is SOM++" << endl;
33+
cout << "This is SOM++" << '\n';
4034

4135
Universe::Start(argc, argv);
4236

0 commit comments

Comments
 (0)