Skip to content

Commit

Permalink
Fix 1 ClangInliner finding:
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 656627700
  • Loading branch information
FHIR Team authored and copybara-github committed Jul 30, 2024
1 parent d36e6b2 commit fae8276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cc/google/fhir/fhir_path/utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ absl::Status RetrieveField(
root, &field, [&](const Message& child) {
// R4+ packs contained resources in Any protos.
if (IsMessageType<google::protobuf::Any>(child)) {
auto any = google::protobuf::DownCastToGenerated<google::protobuf::Any>(child);
auto any = google::protobuf::DownCastMessage<google::protobuf::Any>(child);

FHIR_ASSIGN_OR_RETURN(
Message * unpacked_message,
Expand Down

0 comments on commit fae8276

Please sign in to comment.