Skip to content

Commit

Permalink
Fix condition in command_line_flags for impl_debug
Browse files Browse the repository at this point in the history
  • Loading branch information
pepyakin committed Sep 22, 2017
1 parent 2540b82 commit 777151d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ impl Builder {
output_vector.push("--no-derive-debug".into());
}

if !self.options.impl_debug {
if self.options.impl_debug {
output_vector.push("--impl-debug".into());
}

Expand Down

0 comments on commit 777151d

Please sign in to comment.