summaryrefslogtreecommitdiff
path: root/cad/gnucap/patches/patch-ai
blob: ef66673b52ab4bdac4310febe7c54493a3c91f99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$NetBSD: patch-ai,v 1.1 2005/12/20 12:02:15 joerg Exp $

--- src/m_cpoly.h.orig	2005-12-19 16:50:18.000000000 +0000
+++ src/m_cpoly.h
@@ -67,7 +67,7 @@ struct CPOLY1{		/* first order polynomia
   double   c0;		/* f(x) - x*f'(x), or f0 - x*f1 */
   double   c1;		/* the first derivative		*/
   explicit CPOLY1() : x(0), c0(0), c1(0) {}
-  explicit CPOLY1(const CPOLY1& p) : x(p.x), c0(p.c0), c1(p.c1){untested();}
+  CPOLY1(const CPOLY1& p) : x(p.x), c0(p.c0), c1(p.c1){untested();}
   explicit CPOLY1(double X,double C0,double C1) : x(X), c0(C0), c1(C1) {}
   explicit CPOLY1(const FPOLY1& p);