aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-09-06 00:24:29 +0800
committerGav Wood <i@gavwood.com>2014-09-06 00:24:29 +0800
commit55d0e1c34ef3c14b2c262fe7edd4fdc2f18bcfb5 (patch)
tree247519b7da49081cd572868d836249cece6d27b9
parent6ff57fe0759d13a97346cf5590f57ad729cbbae7 (diff)
downloaddexon-solidity-55d0e1c34ef3c14b2c262fe7edd4fdc2f18bcfb5.tar.gz
dexon-solidity-55d0e1c34ef3c14b2c262fe7edd4fdc2f18bcfb5.tar.zst
dexon-solidity-55d0e1c34ef3c14b2c262fe7edd4fdc2f18bcfb5.zip
Split ethcore off into devcrypto ready for Whisper's crypto and repot namespace.
Rename ethential to devcore.
-rw-r--r--Assembly.cpp2
-rw-r--r--Assembly.h2
-rw-r--r--CMakeLists.txt2
-rw-r--r--CodeFragment.cpp2
-rw-r--r--CodeFragment.h2
-rw-r--r--Compiler.h2
-rw-r--r--Exceptions.h2
-rw-r--r--Parser.h2
8 files changed, 8 insertions, 8 deletions
diff --git a/Assembly.cpp b/Assembly.cpp
index 475eaeab..2250a71f 100644
--- a/Assembly.cpp
+++ b/Assembly.cpp
@@ -21,7 +21,7 @@
#include "Assembly.h"
-#include <libethential/Log.h>
+#include <libdevcore/Log.h>
using namespace std;
using namespace dev;
diff --git a/Assembly.h b/Assembly.h
index cfeb6d1f..b8152fe0 100644
--- a/Assembly.h
+++ b/Assembly.h
@@ -23,7 +23,7 @@
#include <iostream>
#include <sstream>
-#include <libethential/Common.h>
+#include <libdevcore/Common.h>
#include <libevmface/Instruction.h>
#include "Exceptions.h"
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 98bebdfe..7746613e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -18,7 +18,7 @@ file(GLOB HEADERS "*.h")
include_directories(..)
target_link_libraries(${EXECUTABLE} evmface)
-target_link_libraries(${EXECUTABLE} ethential)
+target_link_libraries(${EXECUTABLE} devcore)
if("${TARGET_PLATFORM}" STREQUAL "w64")
diff --git a/CodeFragment.cpp b/CodeFragment.cpp
index ecad3d36..533d00a9 100644
--- a/CodeFragment.cpp
+++ b/CodeFragment.cpp
@@ -23,7 +23,7 @@
#include <boost/algorithm/string.hpp>
#include <boost/spirit/include/support_utree.hpp>
-#include <libethential/Log.h>
+#include <libdevcore/Log.h>
#include <libevmface/Instruction.h>
#include "CompilerState.h"
#include "Parser.h"
diff --git a/CodeFragment.h b/CodeFragment.h
index a81d8ea2..60ab7c6d 100644
--- a/CodeFragment.h
+++ b/CodeFragment.h
@@ -21,7 +21,7 @@
#pragma once
-#include <libethential/Common.h>
+#include <libdevcore/Common.h>
#include <libevmface/Instruction.h>
#include "Assembly.h"
#include "Exceptions.h"
diff --git a/Compiler.h b/Compiler.h
index 5daec0a5..0fadd278 100644
--- a/Compiler.h
+++ b/Compiler.h
@@ -23,7 +23,7 @@
#include <string>
#include <vector>
-#include <libethential/Common.h>
+#include <libdevcore/Common.h>
namespace dev
{
diff --git a/Exceptions.h b/Exceptions.h
index 1dcbbcc6..c45215f1 100644
--- a/Exceptions.h
+++ b/Exceptions.h
@@ -21,7 +21,7 @@
#pragma once
-#include <libethential/Exceptions.h>
+#include <libdevcore/Exceptions.h>
namespace dev
{
diff --git a/Parser.h b/Parser.h
index f90c6b5d..b21989f0 100644
--- a/Parser.h
+++ b/Parser.h
@@ -23,7 +23,7 @@
#include <string>
#include <vector>
-#include <libethential/Common.h>
+#include <libdevcore/Common.h>
namespace boost { namespace spirit { class utree; } }
namespace sp = boost::spirit;