diff options
author | chriseth <chris@ethereum.org> | 2018-09-04 00:44:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-04 00:44:41 +0800 |
commit | 2783905babfbe2fd01ff5f7b2a2499bd13754f10 (patch) | |
tree | 6373b9ee28cc664018ebb8a1de9ebc95b9ad4e7d /libsolidity/ast/ASTJsonConverter.cpp | |
parent | 378f69160884ba23f6876d57a3eb6425bfa1d2cf (diff) | |
parent | 551e0bf47cd0a1d1cb24a878f2309fd9f3253d00 (diff) | |
download | dexon-solidity-2783905babfbe2fd01ff5f7b2a2499bd13754f10.tar dexon-solidity-2783905babfbe2fd01ff5f7b2a2499bd13754f10.tar.gz dexon-solidity-2783905babfbe2fd01ff5f7b2a2499bd13754f10.tar.bz2 dexon-solidity-2783905babfbe2fd01ff5f7b2a2499bd13754f10.tar.lz dexon-solidity-2783905babfbe2fd01ff5f7b2a2499bd13754f10.tar.xz dexon-solidity-2783905babfbe2fd01ff5f7b2a2499bd13754f10.tar.zst dexon-solidity-2783905babfbe2fd01ff5f7b2a2499bd13754f10.zip |
Merge pull request #4837 from chase1745/default-to-unspecified
Rename `Location::Default` to `Location::Unspecified`
Diffstat (limited to 'libsolidity/ast/ASTJsonConverter.cpp')
-rw-r--r-- | libsolidity/ast/ASTJsonConverter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/ast/ASTJsonConverter.cpp b/libsolidity/ast/ASTJsonConverter.cpp index 72b20b3b..beab356c 100644 --- a/libsolidity/ast/ASTJsonConverter.cpp +++ b/libsolidity/ast/ASTJsonConverter.cpp @@ -739,7 +739,7 @@ string ASTJsonConverter::location(VariableDeclaration::Location _location) { switch (_location) { - case VariableDeclaration::Location::Default: + case VariableDeclaration::Location::Unspecified: return "default"; case VariableDeclaration::Location::Storage: return "storage"; |