From 91fda50922865c1dbeed34652c30ac89f5edfadf Mon Sep 17 00:00:00 2001 From: RJ Catalano Date: Fri, 11 Mar 2016 17:53:54 -0600 Subject: 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 --- libsolidity/ast/Types.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libsolidity/ast') 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(), -- cgit