We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc568d4 commit a394b60Copy full SHA for a394b60
1 file changed
src/machine.rs
@@ -61,6 +61,9 @@ pub struct FrameData<'tcx> {
61
/// `stacked_borrows::GlobalState` upon function return, and if we attempt to pop a protected
62
/// tag, to identify which call is responsible for protecting the tag.
63
/// See `Stack::item_popped` for more explanation.
64
+ ///
65
+ /// This will contain one tag per reference passed to the function, so
66
+ /// a size of 2 is enough for the vast majority of functions.
67
pub protected_tags: SmallVec<[SbTag; 2]>,
68
}
69
0 commit comments