From 702636340059f62bb9a747845a3dee42b999eb8e Mon Sep 17 00:00:00 2001 From: rexy712 Date: Sat, 29 Aug 2020 13:01:11 -0700 Subject: [PATCH] Fix missing include in math headers --- include/math/math.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/math/math.hpp b/include/math/math.hpp index 2277b3e..8b8e337 100644 --- a/include/math/math.hpp +++ b/include/math/math.hpp @@ -19,6 +19,7 @@ #ifndef REXY_MATH_HPP #define REXY_MATH_HPP +#include "fwd_declare.hpp" #include "math_common.hpp" #include "vec.hpp" #include "mat.hpp"