From 0199918cd25d2f9988ed323d54d3bf09d1e41a01 Mon Sep 17 00:00:00 2001 From: Wunkolo Date: Fri, 16 Jun 2023 05:48:33 -0700 Subject: [PATCH] Add missing header for regs.hpp This enum was using the `u32` type without including `helpers.hpp`, causing weird intermediate compiler errors when making incremental builds. --- include/PICA/regs.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/PICA/regs.hpp b/include/PICA/regs.hpp index 8ef46e67..0b3246db 100644 --- a/include/PICA/regs.hpp +++ b/include/PICA/regs.hpp @@ -1,4 +1,5 @@ #pragma once +#include "helpers.hpp" namespace PICAInternalRegs { enum : u32 { @@ -71,7 +72,7 @@ namespace PICAInternalRegs { FixedAttribData0 = 0x233, FixedAttribData1 = 0x234, FixedAttribData2 = 0x235, - + // Command processor registers CmdBufSize0 = 0x238, CmdBufSize1 = 0x239,