[Bf-blender-cvs] [d25e116889c] master: Previous commit forgot to guard some things with #ifdef WITH_GMP.

Howard Trickey noreply at git.blender.org
Sun Nov 22 04:45:09 CET 2020


Commit: d25e116889c221bf5803c8c0e80e36c99ca9278b
Author: Howard Trickey
Date:   Sat Nov 21 22:44:35 2020 -0500
Branches: master
https://developer.blender.org/rBd25e116889c221bf5803c8c0e80e36c99ca9278b

Previous commit forgot to guard some things with #ifdef WITH_GMP.

===================================================================

M	source/blender/blenlib/intern/delaunay_2d.cc

===================================================================

diff --git a/source/blender/blenlib/intern/delaunay_2d.cc b/source/blender/blenlib/intern/delaunay_2d.cc
index ae161fc2d1c..f0b65a55816 100644
--- a/source/blender/blenlib/intern/delaunay_2d.cc
+++ b/source/blender/blenlib/intern/delaunay_2d.cc
@@ -125,7 +125,9 @@ template<typename T> struct FatCo {
   vec2<double> abs_approx;
 
   FatCo();
+#ifdef WITH_GMP
   FatCo(const vec2<mpq_class> &v);
+#endif
   FatCo(const vec2<double> &v);
 };
 
@@ -165,12 +167,14 @@ template<> struct FatCo<double> {
   {
   }
 
+#ifdef WITH_GMP
   FatCo(const vec2<mpq_class> &v)
   {
     exact = vec2<double>(v.x.get_d(), v.y.get_d());
     approx = exact;
     abs_approx = vec2<double>(fabs(approx.x), fabs(approx.y));
   }
+#endif
 
   FatCo(const vec2<double> &v)
   {



More information about the Bf-blender-cvs mailing list