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.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/patch/patch_interp.cc b/src/patch/patch_interp.cc
index 580ad3f..a7ac765 100644
--- a/src/patch/patch_interp.cc
+++ b/src/patch/patch_interp.cc
@@ -26,6 +26,7 @@
#include "../jtutil/array.hh"
#include "../jtutil/cpm_map.hh"
#include "../jtutil/linear_map.hh"
+using jtutil::error_exit;
#include "coords.hh"
#include "grid.hh"
@@ -38,7 +39,6 @@
// all the code in this file is inside this namespace
namespace AHFinderDirect
{
-using jtutil::error_exit;
//*****************************************************************************
//*****************************************************************************
@@ -306,9 +306,9 @@ if ( MSS_is_fn_of_interp_coords || MSS_is_fn_of_input_array_values
" MSS_is_fn_of_input_array_values=(int)%d (we only grok 0)\n"
" Jacobian_is_fn_of_input_array_values=(int)%d (we only grok 0)\n"
,
- MSS_is_fn_of_interp_coords,
- MSS_is_fn_of_input_array_values,
- Jacobian_is_fn_of_input_array_values); /*NOTREACHED*/
+ int(MSS_is_fn_of_interp_coords),
+ int(MSS_is_fn_of_input_array_values),
+ int(Jacobian_is_fn_of_input_array_values)); /*NOTREACHED*/
}
//******************************************************************************