From 983639d530b5dda33c7205c2dab5145dc0d1d8ee Mon Sep 17 00:00:00 2001 From: "Adrian.Conlon" Date: Tue, 4 Jul 2017 13:00:23 +0100 Subject: [PATCH] Correct a couple of header issues in the test harness. Signed-off-by: Adrian.Conlon --- inc/TestHarness.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/TestHarness.h b/inc/TestHarness.h index 7666dfa..6ec682c 100644 --- a/inc/TestHarness.h +++ b/inc/TestHarness.h @@ -1,13 +1,14 @@ #pragma once #include +#include +#include namespace EightBit { template class TestHarness { public: TestHarness(const ConfigurationT& configuration) - : m_configuration(configuration), - m_board(configuration) { + : m_board(configuration) { } ~TestHarness() { @@ -57,7 +58,6 @@ namespace EightBit { } private: - const ConfigurationT& m_configuration; BoardT m_board; long long m_totalCycles; std::chrono::steady_clock::time_point m_startTime;