fp: Use forward declarations where applicable

Minimizes the amount of files that need to be rebuilt if the headers
ever change.
This commit is contained in:
Lioncash 2018-07-21 14:01:19 -04:00 committed by MerryMage
parent 46cb0d813b
commit 1dc1e3dcd8
12 changed files with 35 additions and 14 deletions

View file

@ -12,7 +12,10 @@
#include "backend_x64/emit_x64.h"
#include "common/assert.h"
#include "common/common_types.h"
#include "common/fp/fpcr.h"
#include "common/fp/fpsr.h"
#include "common/fp/op.h"
#include "common/fp/rounding_mode.h"
#include "common/fp/util.h"
#include "common/mp/cartesian_product.h"
#include "common/mp/integer.h"