[Bf-blender-cvs] [122496d] master: Correct header (can't use uint here)

Campbell Barton noreply at git.blender.org
Mon May 2 13:04:05 CEST 2016


Commit: 122496dda1071eb35b8f5440ac6ee880b31310c0
Author: Campbell Barton
Date:   Mon May 2 21:08:02 2016 +1000
Branches: master
https://developer.blender.org/rB122496dda1071eb35b8f5440ac6ee880b31310c0

Correct header (can't use uint here)

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

M	extern/curve_fit_nd/curve_fit_nd.h

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

diff --git a/extern/curve_fit_nd/curve_fit_nd.h b/extern/curve_fit_nd/curve_fit_nd.h
index 98e6779..eee6485 100644
--- a/extern/curve_fit_nd/curve_fit_nd.h
+++ b/extern/curve_fit_nd/curve_fit_nd.h
@@ -94,24 +94,24 @@ int curve_fit_cubic_to_points_fl(
  * \param r_error_sq: The maximum distance  (squared) this curve diverges from \a points.
  */
 int curve_fit_cubic_to_points_single_db(
-        const double *points,
-        const uint    points_len,
-        const uint    dims,
-        const double  error_threshold,
-        const double tan_l[],
-        const double tan_r[],
+        const double      *points,
+        const unsigned int points_len,
+        const unsigned int dims,
+        const double       error_threshold,
+        const double       tan_l[],
+        const double       tan_r[],
 
         double  r_handle_l[],
         double  r_handle_r[],
         double *r_error_sq);
 
 int curve_fit_cubic_to_points_single_fl(
-        const float  *points,
-        const uint    points_len,
-        const uint    dims,
-        const float   error_threshold,
-        const float   tan_l[],
-        const float   tan_r[],
+        const float       *points,
+        const unsigned int points_len,
+        const unsigned int dims,
+        const float        error_threshold,
+        const float        tan_l[],
+        const float        tan_r[],
 
         float   r_handle_l[],
         float   r_handle_r[],




More information about the Bf-blender-cvs mailing list