FPRSqrtEstimate: Use forward declarations where applicable

This commit is contained in:
Lioncash 2018-07-22 17:27:39 -04:00 committed by MerryMage
parent 3447c82656
commit 664fb12e21

View file

@ -7,12 +7,12 @@
#pragma once
#include "common/common_types.h"
#include "common/fp/fpcr.h"
#include "common/fp/fpsr.h"
#include "common/fp/rounding_mode.h"
namespace Dynarmic::FP {
class FPCR;
class FPSR;
template<typename FPT>
FPT FPRSqrtEstimate(FPT op, FPCR fpcr, FPSR& fpsr);