Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runtime/proof_trace_writer.h #1189

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions include/runtime/proof_trace_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class proof_trace_file_writer : public proof_trace_writer {
};

class proof_trace_callback_writer : public proof_trace_writer {
private:
protected:
struct kore_term_construction {
void *subject;
uint64_t block_header;
Expand All @@ -212,9 +212,9 @@ class proof_trace_callback_writer : public proof_trace_writer {
};

struct kore_configuration_construction {
void *subject;
block *subject;

kore_configuration_construction(void *subject)
kore_configuration_construction(block *subject)
: subject(subject) { }
};

Expand Down Expand Up @@ -279,6 +279,7 @@ class proof_trace_callback_writer : public proof_trace_writer {
}
};

private:
std::optional<call_event_construction> current_call_event_;

std::optional<rewrite_event_construction> current_rewrite_event_{
Expand Down
Loading