diff options
author | chriseth <chris@ethereum.org> | 2018-06-26 18:24:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-26 18:24:07 +0800 |
commit | e6595d880615a4e2b9572b8026e931abe63c04a9 (patch) | |
tree | 73bd72013afc828be941806719fb89104bfe9e86 /libjulia/Exceptions.h | |
parent | 5939ef992269e92ce7756a19f161d1f0793b764b (diff) | |
parent | 952f14b011f34c1c97b43c4fb28a3637bff15b65 (diff) | |
download | dexon-solidity-e6595d880615a4e2b9572b8026e931abe63c04a9.tar dexon-solidity-e6595d880615a4e2b9572b8026e931abe63c04a9.tar.gz dexon-solidity-e6595d880615a4e2b9572b8026e931abe63c04a9.tar.bz2 dexon-solidity-e6595d880615a4e2b9572b8026e931abe63c04a9.tar.lz dexon-solidity-e6595d880615a4e2b9572b8026e931abe63c04a9.tar.xz dexon-solidity-e6595d880615a4e2b9572b8026e931abe63c04a9.tar.zst dexon-solidity-e6595d880615a4e2b9572b8026e931abe63c04a9.zip |
Merge pull request #4318 from ethereum/yul-internal
Rename some internal constructs from Julia/Iulia to Yul
Diffstat (limited to 'libjulia/Exceptions.h')
-rw-r--r-- | libjulia/Exceptions.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjulia/Exceptions.h b/libjulia/Exceptions.h index 20ab6520..48624a56 100644 --- a/libjulia/Exceptions.h +++ b/libjulia/Exceptions.h @@ -15,7 +15,7 @@ along with solidity. If not, see <http://www.gnu.org/licenses/>. */ /** - * Exceptions in Julia. + * Exceptions in Yul. */ #pragma once @@ -28,8 +28,8 @@ namespace dev namespace julia { -struct IuliaException: virtual Exception {}; -struct OptimizerException: virtual IuliaException {}; +struct YulException: virtual Exception {}; +struct OptimizerException: virtual YulException {}; } } |