From b6f45d9a90b5bb05f54520fa57d522db3e23f263 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 10 Aug 2022 15:40:46 -0400 Subject: [PATCH] Fix struct/class confusion. --- InstructionSets/PowerPC/Decoder.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/InstructionSets/PowerPC/Decoder.cpp b/InstructionSets/PowerPC/Decoder.cpp index 2c740a54a..bcb619866 100644 --- a/InstructionSets/PowerPC/Decoder.cpp +++ b/InstructionSets/PowerPC/Decoder.cpp @@ -595,10 +595,10 @@ Instruction Decoder::decode(uint32_t opcode) { return Instruction(opcode); } -template class InstructionSet::PowerPC::Decoder; -template class InstructionSet::PowerPC::Decoder; -template class InstructionSet::PowerPC::Decoder; +template struct InstructionSet::PowerPC::Decoder; +template struct InstructionSet::PowerPC::Decoder; +template struct InstructionSet::PowerPC::Decoder; -template class InstructionSet::PowerPC::Decoder; -template class InstructionSet::PowerPC::Decoder; -template class InstructionSet::PowerPC::Decoder; +template struct InstructionSet::PowerPC::Decoder; +template struct InstructionSet::PowerPC::Decoder; +template struct InstructionSet::PowerPC::Decoder;