diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-05-19 19:28:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 19:28:17 +0200 |
commit | d5c469acfe6ba05b0a4163261791a255f6c001c4 (patch) | |
tree | 98fcb820df1138395710de5820f00d0c6e0b2a46 | |
parent | 928fb7ae0faceb1afab75d15c3e3ee36ab534499 (diff) | |
parent | 0846943ad5c2e50dd54b4b0eb86ec911b15c1314 (diff) |
Merge pull request #48849 from madmiraal/fix-quat-includes
Fix `Quat` includes
-rw-r--r-- | core/math/quat.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/math/quat.h b/core/math/quat.h index 9db914fe52..d9b130c050 100644 --- a/core/math/quat.h +++ b/core/math/quat.h @@ -28,14 +28,12 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -// Circular dependency between Vector3 and Basis :/ -#include "core/math/vector3.h" - #ifndef QUAT_H #define QUAT_H #include "core/math/math_defs.h" #include "core/math/math_funcs.h" +#include "core/math/vector3.h" #include "core/string/ustring.h" class Quat { |