summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorkyren <kerriganw@gmail.com>2018-02-10 17:55:08 -0500
committerkyren <kerriganw@gmail.com>2018-02-10 17:55:08 -0500
commit20480ec88da771bd06ef60b046d2b1be750f1781 (patch)
tree2e63c40f51995f73d9781b8f2907b792e4c0a79d /src
parentc5a5c51e9ff1039767d880ec1881a1fa4085fb2a (diff)
downloadmlua-20480ec88da771bd06ef60b046d2b1be750f1781.zip
fix unused process import warnings
Diffstat (limited to 'src')
-rw-r--r--src/lua.rs2
-rw-r--r--src/util.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lua.rs b/src/lua.rs
index 0f97cd7..29ba31e 100644
--- a/src/lua.rs
+++ b/src/lua.rs
@@ -1,4 +1,4 @@
-use std::{mem, process, ptr, str};
+use std::{mem, ptr, str};
use std::sync::{Arc, Mutex};
use std::cell::RefCell;
use std::ffi::CString;
diff --git a/src/util.rs b/src/util.rs
index d89b92b..a56f132 100644
--- a/src/util.rs
+++ b/src/util.rs
@@ -1,4 +1,4 @@
-use std::{mem, process, ptr};
+use std::{mem, ptr};
use std::sync::Arc;
use std::ffi::CStr;
use std::any::Any;