Skip to content

Commit 1b676aa

Browse files
committed
Merge remote-tracking branch 'origin/develop'
2 parents 26a501e + dafdb9a commit 1b676aa

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

include/runtime/proof_trace_writer.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class proof_trace_file_writer : public proof_trace_writer {
194194
};
195195

196196
class proof_trace_callback_writer : public proof_trace_writer {
197-
private:
197+
protected:
198198
struct kore_term_construction {
199199
void *subject;
200200
uint64_t block_header;
@@ -212,9 +212,9 @@ class proof_trace_callback_writer : public proof_trace_writer {
212212
};
213213

214214
struct kore_configuration_construction {
215-
void *subject;
215+
block *subject;
216216

217-
kore_configuration_construction(void *subject)
217+
kore_configuration_construction(block *subject)
218218
: subject(subject) { }
219219
};
220220

@@ -279,6 +279,7 @@ class proof_trace_callback_writer : public proof_trace_writer {
279279
}
280280
};
281281

282+
private:
282283
std::optional<call_event_construction> current_call_event_;
283284

284285
std::optional<rewrite_event_construction> current_rewrite_event_{

0 commit comments

Comments
 (0)