Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 699345227
  • Loading branch information
FHIR Team authored and copybara-github committed Nov 24, 2024
1 parent d3ed215 commit 5835bef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cc/google/fhir/stu3/codeable_concepts.cc
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ absl::Status AddCoding(Message* concept_proto,
Message* target_coding =
MutableOrAddMessage(concept_proto, profiled_field);
stu3::proto::CodingWithFixedSystem* fixed_system_coding =
google::protobuf::DownCastToGenerated<stu3::proto::CodingWithFixedSystem>(
google::protobuf::DownCastMessage<stu3::proto::CodingWithFixedSystem>(
target_coding);
CopyCommonCodingFields(coding, fixed_system_coding);
*fixed_system_coding->mutable_code() = coding.code();
Expand All @@ -308,7 +308,7 @@ absl::Status AddCoding(Message* concept_proto,
Message* target_coding =
MutableOrAddMessage(concept_proto, profiled_field);
stu3::proto::CodingWithFixedCode* fixed_system_code =
google::protobuf::DownCastToGenerated<stu3::proto::CodingWithFixedCode>(
google::protobuf::DownCastMessage<stu3::proto::CodingWithFixedCode>(
target_coding);
CopyCommonCodingFields(coding, fixed_system_code);
return absl::OkStatus();
Expand Down

0 comments on commit 5835bef

Please sign in to comment.