summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2020-09-22 00:45:53 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2020-11-06 09:46:53 +0100
commitcdc9e16fb2aef0156d6af4abe3e519c22efa230e (patch)
treef4f5e10029ed7816bcb0931c53d27ed0e21c598c /openpgp-ffi
parent327a987e2c95ea9d05fcadd6fa7a8c249372affd (diff)
openpgp: Use non_exhaustive attribute.
- Fixes #563 - With an MSRV >= 1.40.0, we can use #[non_exhaustive], as mentioned in #406. - This is also a clippy lint: https://rust-lang.github.io/rust-clippy/master/index.html#manual_non_exhaustive
Diffstat (limited to 'openpgp-ffi')
-rw-r--r--openpgp-ffi/src/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp-ffi/src/error.rs b/openpgp-ffi/src/error.rs
index d1e9e962..3bfa0f5c 100644
--- a/openpgp-ffi/src/error.rs
+++ b/openpgp-ffi/src/error.rs
@@ -267,7 +267,7 @@ impl<'a> From<&'a anyhow::Error> for Status {
Status::InvalidKey,
&openpgp::Error::PolicyViolation(_, _) =>
Status::PolicyViolation,
- openpgp::Error::__Nonexhaustive => unreachable!(),
+ &_ => unreachable!(), // openpgp::Error is non-exhaustive.
}
}