File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ class proof_trace_file_writer : public proof_trace_writer {
194
194
};
195
195
196
196
class proof_trace_callback_writer : public proof_trace_writer {
197
- private :
197
+ protected :
198
198
struct kore_term_construction {
199
199
void *subject;
200
200
uint64_t block_header;
@@ -212,9 +212,9 @@ class proof_trace_callback_writer : public proof_trace_writer {
212
212
};
213
213
214
214
struct kore_configuration_construction {
215
- void *subject;
215
+ block *subject;
216
216
217
- kore_configuration_construction (void *subject)
217
+ kore_configuration_construction (block *subject)
218
218
: subject(subject) { }
219
219
};
220
220
@@ -279,6 +279,7 @@ class proof_trace_callback_writer : public proof_trace_writer {
279
279
}
280
280
};
281
281
282
+ private:
282
283
std::optional<call_event_construction> current_call_event_;
283
284
284
285
std::optional<rewrite_event_construction> current_rewrite_event_{
You can’t perform that action at this time.
0 commit comments