From 09c72c7ea783b9d65d19d3d37b4c461c87c00832 Mon Sep 17 00:00:00 2001 From: xissburg Date: Mon, 24 Oct 2022 12:04:39 -0500 Subject: [PATCH] Missing includes --- include/edyn/constraints/cone_constraint.hpp | 2 ++ include/edyn/constraints/gravity_constraint.hpp | 1 + 2 files changed, 3 insertions(+) diff --git a/include/edyn/constraints/cone_constraint.hpp b/include/edyn/constraints/cone_constraint.hpp index e9353480..29a0c863 100644 --- a/include/edyn/constraints/cone_constraint.hpp +++ b/include/edyn/constraints/cone_constraint.hpp @@ -1,6 +1,8 @@ #ifndef EDYN_CONSTRAINTS_CONE_CONSTRAINT_HPP #define EDYN_CONSTRAINTS_CONE_CONSTRAINT_HPP +#include +#include #include "edyn/constraints/constraint_base.hpp" #include "edyn/constraints/constraint_body.hpp" #include "edyn/math/matrix3x3.hpp" diff --git a/include/edyn/constraints/gravity_constraint.hpp b/include/edyn/constraints/gravity_constraint.hpp index b4954c43..451fff95 100644 --- a/include/edyn/constraints/gravity_constraint.hpp +++ b/include/edyn/constraints/gravity_constraint.hpp @@ -1,6 +1,7 @@ #ifndef EDYN_CONSTRAINTS_GRAVITY_CONSTRAINT_HPP #define EDYN_CONSTRAINTS_GRAVITY_CONSTRAINT_HPP +#include #include #include "edyn/math/scalar.hpp" #include "edyn/constraints/constraint_base.hpp"