Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 683458527
  • Loading branch information
FHIR Team authored and copybara-github committed Oct 10, 2024
1 parent d8c2406 commit 9d8b255
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 9d8b255

Please sign in to comment.