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 | |
| parent | 0759126fcf9b1e58341b95a0181678d337fca370 (diff) | |
Remove unused template parameter of Simulator
Diffstat (limited to 'Simulator')
| -rw-r--r-- | Simulator/include/Simulator.h | 1 | ||||
| -rw-r--r-- | Simulator/src/Simulator.cpp | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/Simulator/include/Simulator.h b/Simulator/include/Simulator.h index 1e0aaeb6..c41a4c2b 100644 --- a/Simulator/include/Simulator.h +++ b/Simulator/include/Simulator.h @@ -10,7 +10,6 @@ namespace Simulation /* The Simulator class controls (the creation of) all experiments, and providing access to the database. */ - template<typename SimulationType> class Simulator { public: 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); |
