aboutsummaryrefslogtreecommitdiff
path: root/src/elliptic/row_sparse_Jacobian.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/elliptic/row_sparse_Jacobian.cc')
-rw-r--r--src/elliptic/row_sparse_Jacobian.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/elliptic/row_sparse_Jacobian.cc b/src/elliptic/row_sparse_Jacobian.cc
index 6b1152f..46da285 100644
--- a/src/elliptic/row_sparse_Jacobian.cc
+++ b/src/elliptic/row_sparse_Jacobian.cc
@@ -43,6 +43,7 @@
#include "util_Table.h"
#include "cctk.h"
+#include "cctk_Arguments.h"
#include "config.h"
#include "stdc.h"
@@ -86,6 +87,7 @@ extern "C"
#include "../jtutil/array.hh"
#include "../jtutil/cpm_map.hh"
#include "../jtutil/linear_map.hh"
+using jtutil::error_exit;
#include "../patch/coords.hh"
#include "../patch/grid.hh"
@@ -102,7 +104,6 @@ extern "C"
// all the code in this file is inside this namespace
namespace AHFinderDirect
{
-using jtutil::error_exit;
//******************************************************************************
//******************************************************************************
@@ -443,7 +444,7 @@ int max_N_in_row = 0;
{
for (int II = 0 ; II < N_rows_ ; ++II)
{
- max_N_in_row = jtutil::max(max_N_in_row, IA_[II+1]-IA_[II]);
+ max_N_in_row = jtutil::max(max_N_in_row, IA_[II+1]-IA_[II]);
}
}