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:
authorClément Foucault <foucault.clem@gmail.com>2022-01-12 19:24:57 +0300
committerClément Foucault <foucault.clem@gmail.com>2022-01-12 19:24:57 +0300
commit5f7ad4baaaab38f1a4250dcad17a96d11ee32e10 (patch)
tree294ae2c9353209732f68d8cdbbaeb5101bfd70a5
parente5858a3ad0548322d94f7566b728f7eb952dbca5 (diff)
BLI_math: Fix building when WITH_GMP is off
-rw-r--r--source/blender/blenlib/BLI_math_vec_mpq_types.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_math_vec_mpq_types.hh b/source/blender/blenlib/BLI_math_vec_mpq_types.hh
index 36eb0cac83c..392c647fe0d 100644
--- a/source/blender/blenlib/BLI_math_vec_mpq_types.hh
+++ b/source/blender/blenlib/BLI_math_vec_mpq_types.hh
@@ -20,10 +20,11 @@
* \ingroup bli
*/
+#include "BLI_math_vec_types.hh"
+
#ifdef WITH_GMP
# include "BLI_math_mpq.hh"
-# include "BLI_math_vec_types.hh"
namespace blender {