Remove clone from context

This commit is contained in:
Jeremy Soller
2016-08-18 09:02:31 -06:00
parent 8fc113adef
commit 954af453dc

View File

@@ -37,7 +37,7 @@ pub fn contexts_mut() -> RwLockWriteGuard<'static, ContextList> {
}
/// A context, which identifies either a process or a thread
#[derive(Clone, Debug)]
#[derive(Debug)]
pub struct Context {
/// The open files in the scheme
pub files: Vec<Option<file::File>>