Skip to content

Commit

Permalink
Remove unaligned_references lint
Browse files Browse the repository at this point in the history
The unaligned_references lint has been removed and converted into a hard
error in recent versions of Rust. Remove it from our list of lints to
check accordingly.
  • Loading branch information
d-e-s-o committed Jan 17, 2024
1 parent 9f94500 commit 757b500
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// main.rs

// Copyright (C) 2017-2022 The Nitrocli Developers
// Copyright (C) 2017-2024 The Nitrocli Developers
// SPDX-License-Identifier: GPL-3.0-or-later

#![warn(
Expand Down Expand Up @@ -29,7 +29,6 @@
trivial_numeric_casts,
type_alias_bounds,
tyvar_behind_raw_pointer,
unaligned_references,
unconditional_recursion,
unreachable_code,
unreachable_patterns,
Expand Down

0 comments on commit 757b500

Please sign in to comment.