aboutsummaryrefslogtreecommitdiffstats
path: root/src/main
diff options
context:
space:
mode:
authorShevek <[email protected]>2019-08-19 12:23:10 -0700
committerShevek <[email protected]>2019-08-19 12:23:10 -0700
commitf658426ba59bd956c6ec61663e87c3e594361640 (patch)
tree198b20d74fcecb5001c58f60de46d7a4cee95bdd /src/main
parent1099a07af5bc2d99d844bc7843625c237acf0161 (diff)
LexerSource: Fix handling of numeric values with explicit positive exponents.
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/org/anarres/cpp/LexerSource.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/anarres/cpp/LexerSource.java b/src/main/java/org/anarres/cpp/LexerSource.java
index 33268f8..c613f96 100644
--- a/src/main/java/org/anarres/cpp/LexerSource.java
+++ b/src/main/java/org/anarres/cpp/LexerSource.java
@@ -569,7 +569,7 @@ public class LexerSource extends Source {
LexerException {
StringBuilder part = new StringBuilder();
int d = read();
- if (sign && d == '-') {
+ if (sign && (d == '+' || d == '-')) {
text.append((char) d);
part.append((char) d);
d = read();