Skip to content

Commit 996b830

Browse files
author
Divya Kamath
committed
Remove expiremental code from Main class
1 parent f023210 commit 996b830

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

Simulator/Core/Graphitti_Main.cpp

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,6 @@
2727
#include <string>
2828
using namespace std;
2929

30-
class Test {
31-
char a;
32-
33-
int32_t c;
34-
char b;
35-
};
36-
class Test2 {
37-
char a;
38-
char b;
39-
int32_t c;
40-
};
4130
/// Main function calls the Core's runSimulation method which
4231
/// handles command line arguments and running the simulation.
4332
///
@@ -62,10 +51,6 @@ int main(int argc, char *argv[])
6251
for (int i = 1; i < argc; i++) {
6352
cmdLineArguments = cmdLineArguments + argv[i] + " ";
6453
}
65-
std::cout << "Size of int: " << sizeof(int) << " bytes" << std::endl;
66-
67-
std::cout << "Size of Test: " << sizeof(Test) << " bytes" << std::endl;
68-
std::cout << "Size of Test2: " << sizeof(Test2) << " bytes" << std::endl;
6954

7055
// Creating an instance of core class
7156
Core core;

0 commit comments

Comments
 (0)