blob: 808a3e2a72d34880fd26334d1705a5c167e8ca15 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
 | --- qscanplot/lagrangeinterpolator.cpp.orig	Sat Mar 30 17:30:42 2002
+++ qscanplot/lagrangeinterpolator.cpp	Thu Dec 23 20:19:26 2004
@@ -32,7 +32,7 @@
 // Implementation of class LagrangeInterpolator
 
 /** Constructor */
-LagrangeInterpolator::LagrangeInterpolator(double *px, double *py, int n=0)
+LagrangeInterpolator::LagrangeInterpolator(double *px=0, double *py=0, int n=0)
   : Interpolator(px,py), length(n) {}
 
 /** Sets the length of the vectors */
 |