aboutsummaryrefslogtreecommitdiffstats
path: root/CompilerContext.h
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-05-19 21:44:58 +0800
committerLiana Husikyan <liana@ethdev.com>2015-06-01 19:06:12 +0800
commit16a2ffde80c45decae29e4861b7ee9ec5efa62ac (patch)
treec3d5f37c1abd1ee1805b20daab5abf4b4d672985 /CompilerContext.h
parent0f323b1ef476078efafc8be27e03667750a6cd4f (diff)
downloaddexon-solidity-16a2ffde80c45decae29e4861b7ee9ec5efa62ac.tar.gz
dexon-solidity-16a2ffde80c45decae29e4861b7ee9ec5efa62ac.tar.zst
dexon-solidity-16a2ffde80c45decae29e4861b7ee9ec5efa62ac.zip
style fixes
Diffstat (limited to 'CompilerContext.h')
-rw-r--r--CompilerContext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerContext.h b/CompilerContext.h
index dbf3dcd4..573e0b57 100644
--- a/CompilerContext.h
+++ b/CompilerContext.h
@@ -98,7 +98,7 @@ public:
eth::AssemblyItem appendJumpToNew() { return m_asm.appendJump().tag(); }
/// Appends a JUMP to a tag already on the stack
CompilerContext& appendJump(eth::AssemblyItem::JumpType _jumpType = eth::AssemblyItem::JumpType::Ordinary);
- /// Appends a JUMP to an "ErrorTag"
+ /// Returns an "ErrorTag"
eth::AssemblyItem errorTag() { return m_asm.errorTag(); }
/// Appends a JUMP to a specific tag
CompilerContext& appendJumpTo(eth::AssemblyItem const& _tag) { m_asm.appendJump(_tag); return *this; }