diff --git a/src/library/tactic/vm_monitor.cpp b/src/library/tactic/vm_monitor.cpp index 5de45d9966..609ec7f26d 100644 --- a/src/library/tactic/vm_monitor.cpp +++ b/src/library/tactic/vm_monitor.cpp @@ -435,7 +435,8 @@ void initialize_vm_monitor() { register_system_attribute(basic_attribute( "vm_monitor", "Registers a new virtual machine monitor. The annotated definition must be the of type " "`vm_monitor S`. The command will override the last monitor.", - [](environment const & env, io_state const &, name const & n, unsigned, bool persistent) { + [](environment const & env, io_state const &, name const & n, unsigned, bool /* persistent */) { + /* Remark: We are currently ignoring the 'local' (i.e., persistent == false) modifier */ return vm_monitor_register(env, n); }));