summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/cspline.cxx1
-rw-r--r--hwpfilter/source/solver.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/hwpfilter/source/cspline.cxx b/hwpfilter/source/cspline.cxx
index 87d36eeacc0f..80e80820e2a6 100644
--- a/hwpfilter/source/cspline.cxx
+++ b/hwpfilter/source/cspline.cxx
@@ -119,7 +119,6 @@ void PeriodicSpline (int N, double* x, double* a, double*& b, double*& c,
for (i = 0; i < N; i++)
h[i] = x[i+1]-x[i];
- mgcLinearSystemD sys;
double** mat = mgcLinearSystemD::NewMatrix(N+1); // guaranteed to be zeroed memory
c = mgcLinearSystemD::NewVector(N+1); // guaranteed to be zeroed memory
diff --git a/hwpfilter/source/solver.h b/hwpfilter/source/solver.h
index 8aba94a1125b..54daf1542653 100644
--- a/hwpfilter/source/solver.h
+++ b/hwpfilter/source/solver.h
@@ -23,8 +23,6 @@
class mgcLinearSystemD
{
public:
- mgcLinearSystemD() {;}
-
static double** NewMatrix (int N);
static void DeleteMatrix (int N, double** A);
static double* NewVector (int N);