summaryrefslogtreecommitdiff
path: root/src/theory/strings/regexp_operation.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/regexp_operation.h
parentb70ccff4de0a23bdf11c70002d10a2cc0795a91c (diff)
Fix unsigned integer type issues in strings (#2380)
* Fix unsigned integer types in strings. * Format
Diffstat (limited to 'src/theory/strings/regexp_operation.h')
-rw-r--r--src/theory/strings/regexp_operation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/strings/regexp_operation.h b/src/theory/strings/regexp_operation.h
index a646f0e6f..298c88e8c 100644
--- a/src/theory/strings/regexp_operation.h
+++ b/src/theory/strings/regexp_operation.h
@@ -48,7 +48,7 @@ class RegExpOpr {
Node d_emptyRegexp;
Node d_zero;
Node d_one;
- CVC4::Rational RMAXINT;
+ CVC4::Rational d_rMaxInt;
Node d_sigma;
Node d_sigma_star;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback