Skip to content

Commit

Permalink
Fixed compile issues after merging main
Browse files Browse the repository at this point in the history
  • Loading branch information
AVMatthews committed Dec 16, 2024
1 parent 206032b commit 860e784
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/core/src/clp_s/JsonParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -749,8 +749,8 @@ auto JsonParser::get_archive_node_id(
}

void JsonParser::parse_kv_log_event(KeyValuePairLogEvent const& kv) {
clp::ffi::SchemaTree const& tree = kv.get_schema_tree();
for (auto const& pair : kv.get_node_id_value_pairs()) {
clp::ffi::SchemaTree const& tree = kv.get_user_gen_keys_schema_tree();
for (auto const& pair : kv.get_user_gen_node_id_value_pairs()) {
NodeType const archive_node_type = get_archive_node_type(tree, pair);
auto const node_id = get_archive_node_id(pair.first, archive_node_type, tree);

Expand Down

0 comments on commit 860e784

Please sign in to comment.