fix unused process import warnings

This commit is contained in:
kyren 2018-02-10 17:55:08 -05:00
parent c5a5c51e9f
commit 20480ec88d
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
use std::{mem, process, ptr, str}; use std::{mem, ptr, str};
use std::sync::{Arc, Mutex}; use std::sync::{Arc, Mutex};
use std::cell::RefCell; use std::cell::RefCell;
use std::ffi::CString; use std::ffi::CString;

View File

@ -1,4 +1,4 @@
use std::{mem, process, ptr}; use std::{mem, ptr};
use std::sync::Arc; use std::sync::Arc;
use std::ffi::CStr; use std::ffi::CStr;
use std::any::Any; use std::any::Any;