diff options
| author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-29 08:01:47 +0800 |
|---|---|---|
| committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-29 18:09:18 +0800 |
| commit | 7fb4a64136af18f2b61aef71ecc33ccbbc790ec6 (patch) | |
| tree | c44271af2ca3c9a4461a297ba608f1a75910f09b /libsolidity/ast | |
| parent | b364bd048ffaf233782a23dabd13622431a75aa3 (diff) | |
| download | dexon-solidity-7fb4a64136af18f2b61aef71ecc33ccbbc790ec6.tar dexon-solidity-7fb4a64136af18f2b61aef71ecc33ccbbc790ec6.tar.gz dexon-solidity-7fb4a64136af18f2b61aef71ecc33ccbbc790ec6.tar.bz2 dexon-solidity-7fb4a64136af18f2b61aef71ecc33ccbbc790ec6.tar.lz dexon-solidity-7fb4a64136af18f2b61aef71ecc33ccbbc790ec6.tar.xz dexon-solidity-7fb4a64136af18f2b61aef71ecc33ccbbc790ec6.tar.zst dexon-solidity-7fb4a64136af18f2b61aef71ecc33ccbbc790ec6.zip | |
Move all file specific globals to anonymous namespace
Diffstat (limited to 'libsolidity/ast')
| -rw-r--r-- | libsolidity/ast/Types.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libsolidity/ast/Types.cpp b/libsolidity/ast/Types.cpp index 65b09840..15475034 100644 --- a/libsolidity/ast/Types.cpp +++ b/libsolidity/ast/Types.cpp @@ -304,6 +304,9 @@ MemberList::MemberMap Type::boundFunctions(Type const& _type, ContractDefinition return members; } +namespace +{ + bool isValidShiftAndAmountType(Token::Value _operator, Type const& _shiftAmountType) { // Disable >>> here. @@ -317,6 +320,8 @@ bool isValidShiftAndAmountType(Token::Value _operator, Type const& _shiftAmountT return false; } +} + IntegerType::IntegerType(int _bits, IntegerType::Modifier _modifier): m_bits(_bits), m_modifier(_modifier) { |
