Skip to content

Commit

Permalink
Merge branch 'develop' into func-exit-hint
Browse files Browse the repository at this point in the history
  • Loading branch information
theo25 committed Dec 12, 2024
2 parents 2f2e058 + e7ddbef commit 3187a58
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions include/runtime/proof_trace_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -284,24 +284,22 @@ class proof_trace_callback_writer : public proof_trace_writer {
std::optional<rewrite_event_construction> current_rewrite_event_{
std::nullopt};

[[clang::optnone]] void proof_trace_header_callback(uint32_t version) { }
[[clang::optnone]] void
hook_event_callback(call_event_construction const &event) { }
[[clang::optnone]] void
rewrite_event_callback(rewrite_event_construction const &event) { }
[[clang::optnone]] void
virtual void proof_trace_header_callback(uint32_t version) { }
virtual void hook_event_callback(call_event_construction const &event) { }
virtual void rewrite_event_callback(rewrite_event_construction const &event) {
}
virtual void
configuration_term_event_callback(kore_term_construction const &config) { }
[[clang::optnone]] void
function_event_callback(call_event_construction const &event) { }
[[clang::optnone]] void
virtual void function_event_callback(call_event_construction const &event) { }
virtual void
side_condition_event_callback(rewrite_event_construction const &event) { }
[[clang::optnone]] void side_condition_result_callback(
virtual void side_condition_result_callback(
side_condition_result_construction const &event) { }
[[clang::optnone]] void pattern_matching_failure_callback(
virtual void pattern_matching_failure_callback(
pattern_matching_failure_construction const &event) { }
[[clang::optnone]] void
function_exit_callback(function_exit_construction const &event) { }
[[clang::optnone]] void configuration_event_callback(
virtual void function_exit_callback(function_exit_construction const &event) {
}
virtual void configuration_event_callback(
kore_configuration_construction const &config, bool is_initial) { }

public:
Expand Down

0 comments on commit 3187a58

Please sign in to comment.