From 49681ea4a9fa81173dbe9ffed74b4d4a35eae9e3 Mon Sep 17 00:00:00 2001 From: Paul C Date: Wed, 24 Nov 2021 02:27:28 -0500 Subject: [PATCH] Clarify that drop flag fields only apply to older Rust versions (#324) Co-authored-by: Yuki Okushi --- src/drop-flags.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/drop-flags.md b/src/drop-flags.md index 65fff15..6a0236a 100644 --- a/src/drop-flags.md +++ b/src/drop-flags.md @@ -79,5 +79,5 @@ if condition { } ``` -The drop flags are tracked on the stack and no longer stashed in types that -implement drop. +The drop flags are tracked on the stack. +In old Rust versions, drop flags were stashed in a hidden field of types that implement `Drop`.