diff options
author | Gav Wood <i@gavwood.com> | 2015-04-05 23:46:12 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-04-05 23:46:12 +0800 |
commit | 966407f28555d46bddfd76287198615ac1f5cc9b (patch) | |
tree | f8abc949b57f6ec13c48f66f459a42187aa6c6ae /Assembly.cpp | |
parent | 8afc2ab1e11b1b2af4b9642c1075b91e2768bb48 (diff) | |
download | dexon-solidity-966407f28555d46bddfd76287198615ac1f5cc9b.tar dexon-solidity-966407f28555d46bddfd76287198615ac1f5cc9b.tar.gz dexon-solidity-966407f28555d46bddfd76287198615ac1f5cc9b.tar.bz2 dexon-solidity-966407f28555d46bddfd76287198615ac1f5cc9b.tar.lz dexon-solidity-966407f28555d46bddfd76287198615ac1f5cc9b.tar.xz dexon-solidity-966407f28555d46bddfd76287198615ac1f5cc9b.tar.zst dexon-solidity-966407f28555d46bddfd76287198615ac1f5cc9b.zip |
Allow Solidity build to be disabled.
Diffstat (limited to 'Assembly.cpp')
-rw-r--r-- | Assembly.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Assembly.cpp b/Assembly.cpp index fbc8e47b..fab260a9 100644 --- a/Assembly.cpp +++ b/Assembly.cpp @@ -20,6 +20,8 @@ * Unit tests for Assembly Items from evmcore/Assembly.h */ +#if ETH_SOLIDITY + #include <string> #include <iostream> #include <boost/test/unit_test.hpp> @@ -119,3 +121,4 @@ BOOST_AUTO_TEST_SUITE_END() } } // end namespaces +#endif |