summaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-07-10 15:18:32 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-07-10 15:18:32 +0000
commit00af00c419b965ed26fff540a565dee748c7e4ed (patch)
treeffc954174f16f6923a33d7a1e6576c542d7080f3 /src/parser
parent05b9f9f137028cc072538cc37df427769fd5eace (diff)
going back to 1. being a non decimal
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/smt2/Smt2.g2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/smt2/Smt2.g b/src/parser/smt2/Smt2.g
index 2b331c58a..84d75ceac 100644
--- a/src/parser/smt2/Smt2.g
+++ b/src/parser/smt2/Smt2.g
@@ -1196,7 +1196,7 @@ fragment NUMERAL
* Matches a decimal constant from the input.
*/
DECIMAL_LITERAL
- : NUMERAL '.' DIGIT*
+ : NUMERAL '.' DIGIT+
;
/**
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback