Skip to content
Open
Changes from all commits
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
2 changes: 1 addition & 1 deletion cc/google/fhir/util_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ TEST(Util, UnpackAnyAsContainedResourceR4CustomFactory) {
med_req.add_contained()->PackFrom(contained_medication);

// Use a message factory that just returns a custom instance
auto local_memory = absl::make_unique<r4::core::ContainedResource>();
auto local_memory = std::make_unique<r4::core::ContainedResource>();
auto result_statusor = UnpackAnyAsContainedResource(
med_req.contained(0),
[&](const Descriptor* descriptor) -> absl::StatusOr<Message*> {
Expand Down