diff options
author | chriseth <chris@ethereum.org> | 2017-07-13 17:33:06 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-07-13 17:34:03 +0800 |
commit | 09e821619e20943af7bbd61ad10fb5ae40d2558c (patch) | |
tree | af7152e9af75b84573668424f7eee1a915a7c263 /libevmasm | |
parent | 757c500bda9a32cccc86e1ab24da31a99c0e6eac (diff) | |
download | dexon-solidity-09e821619e20943af7bbd61ad10fb5ae40d2558c.tar.gz dexon-solidity-09e821619e20943af7bbd61ad10fb5ae40d2558c.tar.zst dexon-solidity-09e821619e20943af7bbd61ad10fb5ae40d2558c.zip |
Refactor exceptions and provide comment function.
Diffstat (limited to 'libevmasm')
-rw-r--r-- | libevmasm/AssemblyItem.cpp | 11 | ||||
-rw-r--r-- | libevmasm/GasMeter.cpp | 10 |
2 files changed, 11 insertions, 10 deletions
diff --git a/libevmasm/AssemblyItem.cpp b/libevmasm/AssemblyItem.cpp index e69b5932..76104866 100644 --- a/libevmasm/AssemblyItem.cpp +++ b/libevmasm/AssemblyItem.cpp @@ -14,13 +14,14 @@ You should have received a copy of the GNU General Public License along with solidity. If not, see <http://www.gnu.org/licenses/>. */ -/** @file Assembly.cpp - * @author Gav Wood <i@gavwood.com> - * @date 2014 - */ -#include "AssemblyItem.h" +#include <libevmasm/AssemblyItem.h> + #include <libevmasm/SemanticInformation.h> + +#include <libdevcore/CommonData.h> +#include <libdevcore/FixedHash.h> + #include <fstream> using namespace std; diff --git a/libevmasm/GasMeter.cpp b/libevmasm/GasMeter.cpp index c96c6ca5..6a7c80e0 100644 --- a/libevmasm/GasMeter.cpp +++ b/libevmasm/GasMeter.cpp @@ -14,13 +14,13 @@ You should have received a copy of the GNU General Public License along with solidity. If not, see <http://www.gnu.org/licenses/>. */ -/** @file GasMeter.cpp - * @author Christian <c@ethdev.com> - * @date 2015 - */ -#include "GasMeter.h" +#include <libevmasm/GasMeter.h> + #include <libevmasm/KnownState.h> + +#include <libdevcore/FixedHash.h> + using namespace std; using namespace dev; using namespace dev::eth; |