Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix errors reported on CI
Signed-off-by: Balakrishna Avulapati <[email protected]>
  • Loading branch information
bavulapati committed Jul 27, 2025
commit 46b694b5b05c67e0b0126d43ed6fdd4d95d5e11a
2 changes: 2 additions & 0 deletions src/core/jsonschema/jsonschema.cc
Original file line number Diff line number Diff line change
Expand Up @@ -626,6 +626,7 @@ auto sourcemeta::core::reference_visit(
assert(property.second.is_string());
assert(walker_result.vocabulary.has_value());
sourcemeta::core::URI reference{property.second.to_string()};
// NOLINTNEXTLINE(bugprone-unchecked-optional-access)
callback(subschema, base, walker_result.vocabulary.value(),
property.first, reference);
}
Expand Down Expand Up @@ -685,6 +686,7 @@ auto sourcemeta::core::unidentify(
}

assert(entry.base_dialect.has_value());
// NOLINTNEXTLINE(bugprone-unchecked-optional-access)
sourcemeta::core::anonymize(subschema, entry.base_dialect.value());

if (entry.vocabularies.contains(
Expand Down
Loading