diff options
author | Chase McDermott <chasemcd1745@tamu.edu> | 2018-08-18 07:09:31 +0800 |
---|---|---|
committer | Chase McDermott <chasemcd1745@tamu.edu> | 2018-08-18 07:15:22 +0800 |
commit | 551e0bf47cd0a1d1cb24a878f2309fd9f3253d00 (patch) | |
tree | c27807217402b60b6a9660d92f6db8d1de03cd2b /libsolidity/ast/AST.h | |
parent | 410d288dfc2e08c42df58c7e01ad5c332ce92727 (diff) | |
download | dexon-solidity-551e0bf47cd0a1d1cb24a878f2309fd9f3253d00.tar.gz dexon-solidity-551e0bf47cd0a1d1cb24a878f2309fd9f3253d00.tar.zst dexon-solidity-551e0bf47cd0a1d1cb24a878f2309fd9f3253d00.zip |
Rename Location::Default to Location::Unspecified.
Diffstat (limited to 'libsolidity/ast/AST.h')
-rw-r--r-- | libsolidity/ast/AST.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/ast/AST.h b/libsolidity/ast/AST.h index b953211d..a5cd277d 100644 --- a/libsolidity/ast/AST.h +++ b/libsolidity/ast/AST.h @@ -655,7 +655,7 @@ private: class VariableDeclaration: public Declaration { public: - enum Location { Default, Storage, Memory, CallData }; + enum Location { Unspecified, Storage, Memory, CallData }; VariableDeclaration( SourceLocation const& _sourceLocation, @@ -666,7 +666,7 @@ public: bool _isStateVar = false, bool _isIndexed = false, bool _isConstant = false, - Location _referenceLocation = Location::Default + Location _referenceLocation = Location::Unspecified ): Declaration(_sourceLocation, _name, _visibility), m_typeName(_type), |