From 664fb12e210a6cf560dbc0360de24888151aa896 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 22 Jul 2018 17:27:39 -0400 Subject: [PATCH] FPRSqrtEstimate: Use forward declarations where applicable --- src/common/fp/op/FPRSqrtEstimate.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/fp/op/FPRSqrtEstimate.h b/src/common/fp/op/FPRSqrtEstimate.h index ae2c9649..4beb7a95 100644 --- a/src/common/fp/op/FPRSqrtEstimate.h +++ b/src/common/fp/op/FPRSqrtEstimate.h @@ -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 FPT FPRSqrtEstimate(FPT op, FPCR fpcr, FPSR& fpsr);