Use forward declaration in EwasmTranslationTest

This commit is contained in:
Alex Beregszaszi 2020-08-05 13:31:51 +01:00
parent a21c8e18f1
commit 42a777e9e2
2 changed files with 6 additions and 1 deletions

View File

@ -28,6 +28,7 @@
#include <libyul/AsmParser.h>
#include <libyul/AssemblyStack.h>
#include <libyul/AsmAnalysisInfo.h>
#include <libyul/Object.h>
#include <liblangutil/ErrorReporter.h>
#include <liblangutil/SourceReferenceFormatter.h>

View File

@ -19,7 +19,6 @@
#pragma once
#include <test/TestCase.h>
#include <libyul/Object.h>
namespace solidity::langutil
{
@ -28,6 +27,11 @@ class Error;
using ErrorList = std::vector<std::shared_ptr<Error const>>;
}
namespace solidity::yul
{
struct Object;
}
namespace solidity::yul::test
{