diff options
author | Sergey Pepyakin <s.pepyakin@gmail.com> | 2017-09-22 12:06:15 +0300 |
---|---|---|
committer | Sergey Pepyakin <s.pepyakin@gmail.com> | 2017-09-22 12:06:15 +0300 |
commit | 777151db7056cebe9565d6b657ca60a8c56987ee (patch) | |
tree | a495f629e4e00ea0c5fbcdf521531f4a56fa0929 | |
parent | 2540b8211f0781b96242b6ccc88fe124866b0810 (diff) |
Fix condition in command_line_flags for impl_debug
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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()); } |