Adapt namespace of proto mutator

This commit is contained in:
Bhargava Shastry 2020-01-07 22:25:47 +01:00
parent 98ce79dd0c
commit 629a10a9be
2 changed files with 3 additions and 9 deletions

View File

@ -5,7 +5,7 @@
#define DEBUG
using namespace yul::test::yul_fuzzer;
using namespace solidity::yul::test::yul_fuzzer;
/// Invert condition of an if statement
static YulProtoMutator invertIfCondition(
@ -1452,4 +1452,4 @@ UnaryOp* YulProtoMutator::loadExpression(unsigned _seed)
break;
}
return unop;
}
}

View File

@ -4,11 +4,7 @@
#include <src/libfuzzer/libfuzzer_macro.h>
namespace yul
{
namespace test
{
namespace yul_fuzzer
namespace solidity::yul::test::yul_fuzzer
{
struct YulProtoMutator
{
@ -92,5 +88,3 @@ struct YulProtoMutator
static constexpr unsigned s_normalizedBlockIP = 7;
};
}
}
}