summaryrefslogtreecommitdiff
path: root/src/theory/strings/theory_strings.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-08-26 00:22:57 -0500
committerGitHub <noreply@github.com>2018-08-26 00:22:57 -0500
commit28867b06a05fc13d0257093fcd28caa5907317b6 (patch)
treed6e0db315a168c112aadec5fe3c8d34c0e59deb5 /src/theory/strings/theory_strings.h
parentb70ccff4de0a23bdf11c70002d10a2cc0795a91c (diff)
Fix unsigned integer type issues in strings (#2380)
* Fix unsigned integer types in strings. * Format
Diffstat (limited to 'src/theory/strings/theory_strings.h')
-rw-r--r--src/theory/strings/theory_strings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/strings/theory_strings.h b/src/theory/strings/theory_strings.h
index de505f262..2c899988f 100644
--- a/src/theory/strings/theory_strings.h
+++ b/src/theory/strings/theory_strings.h
@@ -234,7 +234,7 @@ private:
Node d_zero;
Node d_one;
Node d_neg_one;
- CVC4::Rational RMAXINT;
+ CVC4::Rational d_rMaxInt;
unsigned d_card_size;
// Helper functions
Node getRepresentative( Node t );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback