Skip to content

Commit

Permalink
compile on stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Azorlogh committed Sep 10, 2020
1 parent 80a128d commit a7f1d1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/data/sheet/clipboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ impl Clipboard {

selection.clear();
while entries.len() > 0 {
let entry @ (i, note) = entries.pop().unwrap();
let entry = entries.pop().unwrap();
let (i, note) = entry;
let pitch = match note.pitch {
Pitch::Relative(idx, interval) => match idx {
Index::ClipboardIndex(idx) => {
Expand Down
2 changes: 0 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![feature(bindings_after_at)]

use druid::{AppLauncher, LocalizedString, Size, WindowDesc};

#[macro_use]
Expand Down

0 comments on commit a7f1d1b

Please sign in to comment.