Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2022-05-11 16:28:48 +0300
committerRay Molenkamp <github@lazydodo.com>2022-05-11 16:28:48 +0300
commit3eb3d363e1ef2a32543b05cca3ce07d3be45ddc0 (patch)
tree19916327f959f73cf232194fbc8846b4c446f34a
parent007e95c259bc68377406033d34dccea5b0099f4b (diff)
Fix: Build error on windows.
Issue introduced by rBeef98e66cf9e BLI_math_rotation.h uses M_PI which gets defined inside BLI_math_base.h
-rw-r--r--source/blender/blenlib/BLI_math_rotation.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_math_rotation.h b/source/blender/blenlib/BLI_math_rotation.h
index 7d10e52f699..192ad482a69 100644
--- a/source/blender/blenlib/BLI_math_rotation.h
+++ b/source/blender/blenlib/BLI_math_rotation.h
@@ -7,6 +7,7 @@
* \ingroup bli
*/
+#include "BLI_math_base.h"
#include "BLI_utildefines.h"
#include "DNA_vec_types.h"