fp: Use a forward declaration in fused.h

It's permissible to forward declare here, so we can do so and eliminate
a direct header dependency
This commit is contained in:
Lioncash 2018-07-23 15:17:09 -04:00 committed by MerryMage
parent 030820f649
commit 070637e0f6

View file

@ -6,10 +6,10 @@
#pragma once
#include "common/fp/unpacked.h"
namespace Dynarmic::FP {
struct FPUnpacked;
FPUnpacked FusedMulAdd(FPUnpacked addend, FPUnpacked op1, FPUnpacked op2);
} // namespace Dynarmic::FP