3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-02 09:20:22 +00:00

remove unused

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-22 11:38:27 -07:00
parent 45855fce06
commit 71a32f5bb2
5 changed files with 5 additions and 4 deletions

View file

@ -8138,7 +8138,7 @@ namespace smt {
// Returns true if this can be done in a valid way, placing the converted value in the argument.
// Otherwise, returns false, if str is empty or contains non-digit characters.
bool theory_str::string_integer_conversion_valid(zstring str, rational& converted) const {
bool valid = true;
// bool valid = true;
converted = rational::zero();
rational ten(10);
if (str.length() == 0) {