diff options
Diffstat (limited to 'elaborate.cxx')
-rw-r--r-- | elaborate.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elaborate.cxx b/elaborate.cxx index 3fa5dda0..25c223ec 100644 --- a/elaborate.cxx +++ b/elaborate.cxx @@ -387,7 +387,8 @@ struct alias_derived_probe: public derived_probe // alias probes should be ultimately expanded to other derived_probe // types, and not themselves emitted. - void emit_registrations (translator_output* o) { throw semantic_error ("inappropriate", this->tok); } + void emit_registrations_start (translator_output* o, unsigned index) { throw semantic_error ("inappropriate", this->tok); } + void emit_registrations_end (translator_output* o, unsigned index) { throw semantic_error ("inappropriate", this->tok); } void emit_deregistrations (translator_output* o) { throw semantic_error ("inappropriate", this->tok); } void emit_probe_entries (translator_output* o) { throw semantic_error ("inappropriate", this->tok); } }; |