aboutsummaryrefslogtreecommitdiff
path: root/src/jtutil/array.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/jtutil/array.hh')
-rw-r--r--src/jtutil/array.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/jtutil/array.hh b/src/jtutil/array.hh
index 8da4366..7968062 100644
--- a/src/jtutil/array.hh
+++ b/src/jtutil/array.hh
@@ -103,7 +103,7 @@ public:
// ... semantics of N_array() may not be what you want
// if strides specify noncontiguous storage
int N_array() const { return max_subscript_+stride_i_; }
- T* get_array() const { return array_; }
+ T* data_array() const { return array_; }
// constructor, destructor
// ... constructor initializes all array elements to T(0.0)
@@ -196,7 +196,7 @@ public:
// ... semantics of N_array() may not be what you want
// if strides specify noncontiguous storage
int N_array() const { return max_subscript_+stride_j_; }
- T* get_array() const { return array_; }
+ T* data_array() const { return array_; }
// constructor, destructor
// ... constructor initializes all array elements to T(0.0)
@@ -296,7 +296,7 @@ public:
// ... semantics of N_array() may not be what you want
// if strides specify noncontiguous storage
int N_array() const { return max_subscript_+stride_k_; }
- T* get_array() const { return array_; }
+ T* data_array() const { return array_; }
// constructor, destructor
// ... constructor initializes all array elements to T(0.0)
@@ -409,7 +409,7 @@ public:
// ... semantics of N_array() may not be what you want
// if strides specify noncontiguous storage
int N_array() const { return max_subscript_+stride_l_; }
- T* get_array() const { return array_; }
+ T* data_array() const { return array_; }
// constructor, destructor
// ... constructor initializes all array elements to T(0.0)