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:
parent
030820f649
commit
070637e0f6
1 changed files with 2 additions and 2 deletions
|
@ -6,10 +6,10 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "common/fp/unpacked.h"
|
|
||||||
|
|
||||||
namespace Dynarmic::FP {
|
namespace Dynarmic::FP {
|
||||||
|
|
||||||
|
struct FPUnpacked;
|
||||||
|
|
||||||
FPUnpacked FusedMulAdd(FPUnpacked addend, FPUnpacked op1, FPUnpacked op2);
|
FPUnpacked FusedMulAdd(FPUnpacked addend, FPUnpacked op1, FPUnpacked op2);
|
||||||
|
|
||||||
} // namespace Dynarmic::FP
|
} // namespace Dynarmic::FP
|
||||||
|
|
Loading…
Reference in a new issue