Browse Source

Remove copy bound

Accidental copying pointed out by @phil_opp
restioson 7 years ago
parent
commit
8096ec55a8
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/header.rs
  2. 1 1
      src/module.rs

+ 1 - 1
src/header.rs

@@ -6,7 +6,7 @@ pub struct Tag {
     // tag specific fields
 }
 
-#[derive(Copy, Clone, Debug)]
+#[derive(Clone, Debug)]
 pub struct TagIter {
     pub current: *const Tag,
 }

+ 1 - 1
src/module.rs

@@ -36,7 +36,7 @@ pub fn module_iter(iter: TagIter) -> ModuleIter {
     ModuleIter { iter: iter }
 }
 
-#[derive(Copy, Clone, Debug)]
+#[derive(Clone, Debug)]
 pub struct ModuleIter {
     iter: TagIter,
 }