]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_abi/src/lib.rs
Rollup merge of #107706 - tgross35:atomic-as-mut-ptr, r=m-ou-se
[rust.git] / compiler / rustc_abi / src / lib.rs
index 9126c516d381e24550c7df127e4f014e3646a5ed..0306cb5ce6abd7615d068c093cff045333e2e26b 100644 (file)
@@ -1443,8 +1443,8 @@ pub enum PointerKind {
     SharedRef { frozen: bool },
     /// Mutable reference. `unpin` indicates the absence of any pinned data.
     MutableRef { unpin: bool },
-    /// Box.
-    Box,
+    /// Box. `unpin` indicates the absence of any pinned data.
+    Box { unpin: bool },
 }
 
 /// Note that this information is advisory only, and backends are free to ignore it.