Skip to content

Commit

Permalink
Fixed 1'bX warnings by switching to 'x for codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
VonTum committed Jul 22, 2024
1 parent 245eefc commit 499eb8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/to_string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ impl Value {

result.push('}');
}
Value::Unset => result.push_str("1'bX/*UNSET*/"),
Value::Error => result.push_str("1'bX/*ERROR*/"),
Value::Unset => result.push_str("'x/*UNSET*/"),
Value::Error => result.push_str("'x/*ERROR*/"),
}
}
pub fn to_string(&self) -> String {
Expand Down

0 comments on commit 499eb8d

Please sign in to comment.