aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mueller <deso@posteo.net>2019-12-30 08:42:08 -0800
committerDaniel Mueller <deso@posteo.net>2019-12-30 08:42:08 -0800
commit476cbd7238b0a4a0fd842ca5be7706f19c936a12 (patch)
tree32378a42843de8478d89ad3b7f11d5da1c84df70
parent4ae7f49555583b0d02fe73354e79243980545b60 (diff)
downloadnitrocli-476cbd7238b0a4a0fd842ca5be7706f19c936a12.tar.gz
nitrocli-476cbd7238b0a4a0fd842ca5be7706f19c936a12.tar.bz2
Remove unions_with_drop_fields lint
With Rust 1.40 the unions_with_drop_fields lint has been removed. This change removes it from our list of lints as well.
-rw-r--r--nitrocli/src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/nitrocli/src/main.rs b/nitrocli/src/main.rs
index bb4b007..c639f14 100644
--- a/nitrocli/src/main.rs
+++ b/nitrocli/src/main.rs
@@ -1,7 +1,7 @@
// main.rs
// *************************************************************************
-// * Copyright (C) 2017-2019 Daniel Mueller (deso@posteo.net) *
+// * Copyright (C) 2017-2020 Daniel Mueller (deso@posteo.net) *
// * *
// * This program is free software: you can redistribute it and/or modify *
// * it under the terms of the GNU General Public License as published by *
@@ -47,7 +47,6 @@
type_alias_bounds,
tyvar_behind_raw_pointer,
unconditional_recursion,
- unions_with_drop_fields,
unreachable_code,
unreachable_patterns,
unstable_features,