Skip to content

Commit

Permalink
Address a lint
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanUkhov committed Aug 10, 2023
1 parent d8c0d8d commit bf9a955
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "postscript"
version = "0.17.4"
version = "0.17.5"
edition = "2021"
license = "Apache-2.0/MIT"
authors = ["Ivan Ukhov <ivan.ukhov@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion src/type2/program.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ impl<'l> Program<'l> {
// Random =>
Mul => push!(pop!() * pop!()),
Sqrt => push!(pop!().sqrt()),
#[allow(clippy::drop_copy)]
#[allow(dropping_copy_types)]
Drop => std::mem::drop(pop!()),
Exch => {
let (right, left) = (pop!(), pop!());
Expand Down

0 comments on commit bf9a955

Please sign in to comment.