aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/ast
diff options
context:
space:
mode:
authorRJ Catalano <rcatalano@macsales.com>2016-03-12 07:53:54 +0800
committerVoR0220 <catalanor0220@gmail.com>2016-05-10 00:41:02 +0800
commit91fda50922865c1dbeed34652c30ac89f5edfadf (patch)
treee908f41e77eab2f95b84a6750c4d6df31b5c8123 /libsolidity/ast
parentdff1a26f55adc54ccfddfa9d2e87f1dab719d8ca (diff)
downloaddexon-solidity-91fda50922865c1dbeed34652c30ac89f5edfadf.tar.gz
dexon-solidity-91fda50922865c1dbeed34652c30ac89f5edfadf.tar.zst
dexon-solidity-91fda50922865c1dbeed34652c30ac89f5edfadf.zip
fixed problem with var...probably a conversion problem for fixed in size capabilities
adding fixed type tests Removing bitshift and regrouping fixed type tests together
Diffstat (limited to 'libsolidity/ast')
-rw-r--r--libsolidity/ast/Types.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/ast/Types.cpp b/libsolidity/ast/Types.cpp
index 577838fb..a0915df9 100644
--- a/libsolidity/ast/Types.cpp
+++ b/libsolidity/ast/Types.cpp
@@ -469,7 +469,7 @@ bool ConstantNumberType::isValidLiteral(Literal const& _literal)
{
//problem here. If the first digit is a 0 in the string, it won't
//turn it into a integer...Using find if not to count the leading 0s.
-
+
auto leadingZeroes = find_if_not(
radixPoint + 1,
_literal.value().end(),