From 8408d99e2de735cdf6bf231b36a642fb9fc9f3cb Mon Sep 17 00:00:00 2001 From: Googler Date: Wed, 18 Mar 2026 10:59:55 -0700 Subject: [PATCH] Automatic code cleanup. PiperOrigin-RevId: 885685257 --- support/cc_std_impl/unique_ptr.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/support/cc_std_impl/unique_ptr.rs b/support/cc_std_impl/unique_ptr.rs index 70c340009..0b3b5f30c 100644 --- a/support/cc_std_impl/unique_ptr.rs +++ b/support/cc_std_impl/unique_ptr.rs @@ -103,6 +103,9 @@ impl Drop for unique_ptr { } } +/// Legacy alias for [`virtual_unique_ptr`]. +pub type unique_ptr_dyn = virtual_unique_ptr; + /// A smart pointer that owns and manages a polymorphic object with base class `T`. /// /// This type is ABI-compatible with C++'s `std::unique_ptr`, where `T` is a base class with a