aboutsummaryrefslogtreecommitdiffstats
path: root/libjulia/Exceptions.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-06-26 18:24:07 +0800
committerGitHub <noreply@github.com>2018-06-26 18:24:07 +0800
commite6595d880615a4e2b9572b8026e931abe63c04a9 (patch)
tree73bd72013afc828be941806719fb89104bfe9e86 /libjulia/Exceptions.h
parent5939ef992269e92ce7756a19f161d1f0793b764b (diff)
parent952f14b011f34c1c97b43c4fb28a3637bff15b65 (diff)
downloaddexon-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.h6
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 {};
}
}