Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 668292268
  • Loading branch information
FHIR Team authored and copybara-github committed Aug 30, 2024
1 parent d36e6b2 commit 5f74083
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 5f74083

Please sign in to comment.