diff options
author | VoR0220 <catalanor0220@gmail.com> | 2016-03-30 05:13:00 +0800 |
---|---|---|
committer | VoR0220 <catalanor0220@gmail.com> | 2016-05-10 00:41:03 +0800 |
commit | f0ea817580d7f8d5c5177adf1a2e39e5e560fefc (patch) | |
tree | 7b32f9016b79ba31c75942cc7653cb4335ec6c54 /libsolidity/codegen/CompilerUtils.cpp | |
parent | f67bfd24a3c294f0388f847be213a5236ffd60a4 (diff) | |
download | dexon-solidity-f0ea817580d7f8d5c5177adf1a2e39e5e560fefc.tar.gz dexon-solidity-f0ea817580d7f8d5c5177adf1a2e39e5e560fefc.tar.zst dexon-solidity-f0ea817580d7f8d5c5177adf1a2e39e5e560fefc.zip |
fixing modulus and Solidity Name and Type Resolution
minor fixes
current attempts at binary fixup
Diffstat (limited to 'libsolidity/codegen/CompilerUtils.cpp')
-rw-r--r-- | libsolidity/codegen/CompilerUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerUtils.cpp b/libsolidity/codegen/CompilerUtils.cpp index 9efb2c29..8589900e 100644 --- a/libsolidity/codegen/CompilerUtils.cpp +++ b/libsolidity/codegen/CompilerUtils.cpp @@ -345,7 +345,7 @@ void CompilerUtils::convertType(Type const& _typeOnStack, Type const& _targetTyp break; case Type::Category::Integer: case Type::Category::Contract: - case Type::Category::RationalNumber + case Type::Category::RationalNumber: case Type::Category::FixedPoint: if (targetTypeCategory == Type::Category::FixedBytes) { |