aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch_interp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/patch/patch_interp.cc')
-rw-r--r--src/patch/patch_interp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/patch/patch_interp.cc b/src/patch/patch_interp.cc
index f564dc8..6fb79fc 100644
--- a/src/patch/patch_interp.cc
+++ b/src/patch/patch_interp.cc
@@ -44,7 +44,7 @@
patch_frontier::patch_frontier
(const patch_edge& my_edge_in,
int min_iperp_in, int max_iperp_in,
- int interpolator_order_in)
+ int interpolator_order)
: my_patch_(my_edge_in.my_patch()),
my_edge_(my_edge_in),
min_iperp_(min_iperp_in), max_iperp_(max_iperp_in),
@@ -88,7 +88,7 @@ interpolator_
{
for (int iperp = min_iperp() ; iperp <= max_iperp() ; ++iperp)
{
- interpolator_t_* I = new interpolator_t_(interpolator_order_in);
+ interpolator_t_* I = new interpolator_t_(interpolator_order);
(*interpolator_)(gfn,iperp) = I;
I->setup_data_x(*ripar_map_);
}