mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-23 00:29:47 +00:00
Correct a couple of header issues in the test harness.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
This commit is contained in:
parent
f52edaf8bc
commit
983639d530
@ -1,13 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include <chrono>
|
||||
#include <intrin.h>
|
||||
#include <iostream>
|
||||
|
||||
namespace EightBit {
|
||||
template<class ConfigurationT, class BoardT> 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;
|
||||
|
Loading…
Reference in New Issue
Block a user