1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-26 10:29:31 +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;
};
#else
template <typename Executor>
template <InstructionSet::ARM::Model model, typename Executor>
struct HackyDebugger {
void notify(uint32_t, uint32_t, Executor &) {}
};