diff options
author | chriseth <c@ethdev.com> | 2016-11-16 22:09:01 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-11-16 22:09:01 +0800 |
commit | 2c14a96820233809db4360b39f5f02039be5730a (patch) | |
tree | ee20fa35cbc19eddcddd1013e745b387e7371be3 /libevmasm/Assembly.cpp | |
parent | 2defe4dcefb6f0e17d7f87231233ff637dad55a8 (diff) | |
download | dexon-solidity-2c14a96820233809db4360b39f5f02039be5730a.tar.gz dexon-solidity-2c14a96820233809db4360b39f5f02039be5730a.tar.zst dexon-solidity-2c14a96820233809db4360b39f5f02039be5730a.zip |
Some more assertions and style changes.
Diffstat (limited to 'libevmasm/Assembly.cpp')
-rw-r--r-- | libevmasm/Assembly.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libevmasm/Assembly.cpp b/libevmasm/Assembly.cpp index a813a3a7..a3037456 100644 --- a/libevmasm/Assembly.cpp +++ b/libevmasm/Assembly.cpp @@ -81,7 +81,7 @@ string Assembly::out() const unsigned Assembly::bytesRequired(unsigned subTagSize) const { - for (unsigned tagSize = subTagSize;; ++tagSize) + for (unsigned tagSize = subTagSize; true; ++tagSize) { unsigned ret = 1; for (auto const& i: m_data) |