Small fix

This commit is contained in:
momo5502
2025-04-01 09:27:07 +02:00
parent 3e6c8ed84c
commit 54b5bdc531

View File

@@ -175,14 +175,14 @@ namespace icicle
emulator_hook* hook_basic_block(basic_block_hook_callback callback) override
{
return nullptr;
// throw std::runtime_error("Not implemented");
(void)callback;
throw std::runtime_error("Not implemented");
}
emulator_hook* hook_edge_generation(edge_generation_hook_callback callback) override
{
return nullptr;
// throw std::runtime_error("Not implemented");
(void)callback;
throw std::runtime_error("Not implemented");
}
emulator_hook* hook_interrupt(interrupt_hook_callback callback) override