From 8af173c4bc0a8564e2e456328d0a017018c03234 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 16 Nov 2023 15:48:27 -0500 Subject: [PATCH] Remove hopeful hit. --- Machines/PCCompatible/PCCompatible.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Machines/PCCompatible/PCCompatible.cpp b/Machines/PCCompatible/PCCompatible.cpp index 79da52473..13f936acd 100644 --- a/Machines/PCCompatible/PCCompatible.cpp +++ b/Machines/PCCompatible/PCCompatible.cpp @@ -18,8 +18,6 @@ #include -extern template class InstructionSet::x86::Decoder; - namespace PCCompatible { struct Registers { @@ -418,7 +416,7 @@ class ConcreteMachine: IO io; static constexpr auto model = InstructionSet::x86::Model::i8086; } context; - InstructionSet::x86::Decoder decoder; + InstructionSet::x86::Decoder decoder; std::pair> decoded; };