Renaming namespace dev::julia to dev::yul.

This commit is contained in:
Christian Parpart
2018-10-15 11:58:51 +02:00
parent 9a4bec7e47
commit 1304361b9c
71 changed files with 100 additions and 100 deletions
+2 -2
View File
@@ -28,9 +28,9 @@
using namespace std;
using namespace dev;
using namespace dev::julia;
using namespace dev::yul;
void dev::julia::removeEmptyBlocks(Block& _block)
void dev::yul::removeEmptyBlocks(Block& _block)
{
auto isEmptyBlock = [](Statement const& _st) -> bool {
return _st.type() == typeid(Block) && boost::get<Block>(_st).statements.empty();