Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_def/src/item_tree.rs')
| -rw-r--r-- | crates/hir_def/src/item_tree.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/hir_def/src/item_tree.rs b/crates/hir_def/src/item_tree.rs index 4bde87b8d4..bf60c6bc6a 100644 --- a/crates/hir_def/src/item_tree.rs +++ b/crates/hir_def/src/item_tree.rs @@ -612,9 +612,6 @@ impl FnFlags { pub(crate) const IS_CONST: u8 = 1 << 3; pub(crate) const IS_ASYNC: u8 = 1 << 4; pub(crate) const IS_UNSAFE: u8 = 1 << 5; - /// Whether the function is located in an `extern` block (*not* whether it is an - /// `extern "abi" fn`). - pub(crate) const IS_IN_EXTERN_BLOCK: u8 = 1 << 6; pub(crate) const IS_VARARGS: u8 = 1 << 7; } |