Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/edition/src/lib.rs')
| -rw-r--r-- | crates/edition/src/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/edition/src/lib.rs b/crates/edition/src/lib.rs index f1a1fe5964..eb4cec39dc 100644 --- a/crates/edition/src/lib.rs +++ b/crates/edition/src/lib.rs @@ -16,8 +16,6 @@ impl Edition { pub const DEFAULT: Edition = Edition::Edition2015; pub const LATEST: Edition = Edition::Edition2024; pub const CURRENT: Edition = Edition::Edition2024; - /// The current latest stable edition, note this is usually not the right choice in code. - pub const CURRENT_FIXME: Edition = Edition::Edition2024; pub fn from_u32(u32: u32) -> Edition { match u32 { |