diff options
author | Gav Wood <i@gavwood.com> | 2014-09-06 00:24:29 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-09-06 00:24:29 +0800 |
commit | 55d0e1c34ef3c14b2c262fe7edd4fdc2f18bcfb5 (patch) | |
tree | 247519b7da49081cd572868d836249cece6d27b9 | |
parent | 6ff57fe0759d13a97346cf5590f57ad729cbbae7 (diff) | |
download | dexon-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.cpp | 2 | ||||
-rw-r--r-- | Assembly.h | 2 | ||||
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | CodeFragment.cpp | 2 | ||||
-rw-r--r-- | CodeFragment.h | 2 | ||||
-rw-r--r-- | Compiler.h | 2 | ||||
-rw-r--r-- | Exceptions.h | 2 | ||||
-rw-r--r-- | Parser.h | 2 |
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; @@ -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" @@ -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 { @@ -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; |