summaryrefslogtreecommitdiffstats
path: root/copypasta
diff options
context:
space:
mode:
authorJoe Wilm <jwilm@users.noreply.github.com>2018-12-10 09:53:56 -0800
committerChristian Duerr <chrisduerr@users.noreply.github.com>2018-12-10 17:53:56 +0000
commit217ad9ec285b4923de1790b0976c8c793039c994 (patch)
tree440e0d6d35f119246d2b113fd01b431f4f9c2c38 /copypasta
parent7ab0b448479c9705fa14003bda97040630710b7a (diff)
Upgrade to Rust 2018
This resolves a lot of NLL issues, however full NLL will be necessary to handle a couple of remaining issues.
Diffstat (limited to 'copypasta')
-rw-r--r--copypasta/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/copypasta/src/lib.rs b/copypasta/src/lib.rs
index 796c98df..d591a04f 100644
--- a/copypasta/src/lib.rs
+++ b/copypasta/src/lib.rs
@@ -85,4 +85,4 @@ pub use macos::{Clipboard, Error};
#[cfg(windows)]
mod windows;
#[cfg(windows)]
-pub use windows::{Clipboard, Error};
+pub use crate::windows::{Clipboard, Error};