From f46383f35084b9071111bad95770779f63e3946e Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Sun, 2 Jul 2023 13:47:41 -0700 Subject: [PATCH] Add #include to fix compile error gcc complains std::array being undeclared when trying to build a fresh clone. --- sim/simx/tex_unit.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sim/simx/tex_unit.h b/sim/simx/tex_unit.h index 5bca8098..8a1bf53a 100644 --- a/sim/simx/tex_unit.h +++ b/sim/simx/tex_unit.h @@ -1,5 +1,6 @@ #pragma once +#include #include "types.h" namespace vortex { @@ -25,4 +26,4 @@ private: Core* core_; }; -} \ No newline at end of file +}