summaryrefslogtreecommitdiff
path: root/src/parser.cpp
diff options
context:
space:
mode:
authorMike Buland <mike@xagasoft.com>2014-09-17 08:50:36 -0600
committerMike Buland <mike@xagasoft.com>2014-09-17 08:50:36 -0600
commit3ada65d36621787f8dd103e9ae19083ef3c1df5b (patch)
tree75dbdbe115bfa83923ccbf50bddf6d3e5574a2cd /src/parser.cpp
parentabe7e449143052b07fae688da690c2a7d387a291 (diff)
downloadclic-3ada65d36621787f8dd103e9ae19083ef3c1df5b.tar.gz
clic-3ada65d36621787f8dd103e9ae19083ef3c1df5b.tar.bz2
clic-3ada65d36621787f8dd103e9ae19083ef3c1df5b.tar.xz
clic-3ada65d36621787f8dd103e9ae19083ef3c1df5b.zip
Issues with small decimal numbers were in toString.
It was bailing on very small numbers with only one decimal point of precision, which is silly. This has been fixed.
Diffstat (limited to 'src/parser.cpp')
-rw-r--r--src/parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.cpp b/src/parser.cpp
index cf3bb3f..607de8a 100644
--- a/src/parser.cpp
+++ b/src/parser.cpp
@@ -5,7 +5,7 @@
5#include <bu/sio.h> 5#include <bu/sio.h>
6#include <stdlib.h> 6#include <stdlib.h>
7 7
8#define DEBUG 8//#define DEBUG
9 9
10Parser::Parser( Lexer &lex, Bu::Stream &rOut ) : 10Parser::Parser( Lexer &lex, Bu::Stream &rOut ) :
11 lex( lex ), 11 lex( lex ),