diff options
| author | Matthijs Bijman <matthijs@bijman.org> | 2017-02-26 16:43:17 +0100 |
|---|---|---|
| committer | Matthijs Bijman <matthijs@bijman.org> | 2017-02-26 16:43:17 +0100 |
| commit | 0709a81231b695caecb2269fe23d8dadeb764892 (patch) | |
| tree | 562afa3ef3d3088abf776c5aa55d13c736c8d500 /Simulator/src/Simulator.cpp | |
| parent | 0759126fcf9b1e58341b95a0181678d337fca370 (diff) | |
Remove unused template parameter of Simulator
Diffstat (limited to 'Simulator/src/Simulator.cpp')
| -rw-r--r-- | Simulator/src/Simulator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Simulator/src/Simulator.cpp b/Simulator/src/Simulator.cpp index fe963e0c..62482f5c 100644 --- a/Simulator/src/Simulator.cpp +++ b/Simulator/src/Simulator.cpp @@ -11,7 +11,7 @@ int main(int argc, char* argv[]) assert(argc == 2); // The main simulator, responsible for updating and writing away each simulation. - Simulation::Simulator<DefaultSection> simulator(argv[1]); + Simulation::Simulator simulator(argv[1]); // Timer used for polling only once every 5 seconds auto pollTimer = std::chrono::high_resolution_clock::now() - std::chrono::seconds(5); |
