summaryrefslogtreecommitdiff
path: root/hwpfilter/source/solver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/solver.cxx')
-rw-r--r--hwpfilter/source/solver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/hwpfilter/source/solver.cxx b/hwpfilter/source/solver.cxx
index 83db1043d8c9..07889620f9c2 100644
--- a/hwpfilter/source/solver.cxx
+++ b/hwpfilter/source/solver.cxx
@@ -44,7 +44,7 @@ std::unique_ptr<double[]> mgcLinearSystemD::NewVector (int N)
return B;
}
-bool mgcLinearSystemD::Solve (int n, std::unique_ptr<std::unique_ptr<double[]>[]>& a, double* b)
+bool mgcLinearSystemD::Solve (int n, std::unique_ptr<std::unique_ptr<double[]>[]> const & a, double* b)
{
std::unique_ptr<int[]> indxc( new int[n] );
if ( !indxc )