Remove redundant `unsafe` blocks.

These were left over by accident from when the function was unsound, and not marked `unsafe`. :-*

PiperOrigin-RevId: 446154111
diff --git a/rs_bindings_from_cc/support/oops.rs b/rs_bindings_from_cc/support/oops.rs
index 37f46bd..7bc37cf 100644
--- a/rs_bindings_from_cc/support/oops.rs
+++ b/rs_bindings_from_cc/support/oops.rs
@@ -190,7 +190,7 @@
 
         unsafe impl Inherits<Base> for Derived {
             unsafe fn upcast_ptr(derived: *const Self) -> *const Base {
-                unsafe { &(*derived).base }
+                &(*derived).base
             }
         }
         let mut derived = Derived::default();
@@ -225,7 +225,7 @@
 
         unsafe impl Inherits<Base> for Derived {
             unsafe fn upcast_ptr(derived: *const Self) -> *const Base {
-                unsafe { &(*derived).base }
+                &(*derived).base
             }
         }
         let mut derived = Derived::default();