Interface: Forward declare Arm::LocationDescriptor

This commit is contained in:
MerryMage 2016-08-06 19:59:09 +01:00
parent 9ab7626374
commit 411e804b0d
2 changed files with 7 additions and 4 deletions

View file

@ -8,11 +8,14 @@
#include <memory>
#include "frontend/arm_types.h"
#include "common/common_types.h"
namespace Dynarmic {
namespace Arm {
struct LocationDescriptor;
}
class Jit;
/// These function pointers may be inserted into compiled code.
@ -82,7 +85,7 @@ public:
return is_executing;
}
std::string Disassemble(Arm::LocationDescriptor descriptor);
std::string Disassemble(const Arm::LocationDescriptor& descriptor);
private:
bool halt_requested = false;