commit | 1f11b9537a23e862f26faf8320512d738a72ab6e | [log] [tgz] |
---|---|---|
author | Scott Todd <scotttodd@google.com> | Mon Jun 29 10:03:38 2020 -0700 |
committer | GitHub <noreply@github.com> | Mon Jun 29 10:03:38 2020 -0700 |
tree | 30386e30de441f2a48f8a30fd0198ca6efd6c68f | |
parent | a160caae44e78b0bb329416d26ecde097cd9c8ea [diff] |
Fix make_unique casing. (#2350)
diff --git a/iree/hal/vulkan/timepoint_util.cc b/iree/hal/vulkan/timepoint_util.cc index d8f2639..98e9f96 100644 --- a/iree/hal/vulkan/timepoint_util.cc +++ b/iree/hal/vulkan/timepoint_util.cc
@@ -118,7 +118,7 @@ VK_RETURN_IF_ERROR(syms()->vkCreateFence(*logical_device_, &create_info, logical_device_->allocator(), &fence)); - fences[i] = absl::MakeUnique<TimePointFence>(this, fence); + fences[i] = absl::make_unique<TimePointFence>(this, fence); } }