1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-26 11:55:15 +00:00

Fix non-debug build.

This commit is contained in:
Thomas Harte 2024-03-31 19:17:55 -04:00
parent cc122a7a68
commit 914b88d115

View File

@ -313,7 +313,7 @@ private:
std::set<uint32_t> opcodes; std::set<uint32_t> opcodes;
}; };
#else #else
template <typename Executor> template <InstructionSet::ARM::Model model, typename Executor>
struct HackyDebugger { struct HackyDebugger {
void notify(uint32_t, uint32_t, Executor &) {} void notify(uint32_t, uint32_t, Executor &) {}
}; };