aboutsummaryrefslogtreecommitdiff
path: root/src/jtutil/array.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-21 15:28:12 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-21 15:28:12 +0000
commit085134d9d7a18c7c8f2d2dcf90bdc81946aaed98 (patch)
treeeb7ede87af6532ea5d3d865b7b1dcd7cffe5d8bd /src/jtutil/array.hh
parentf49d7aa2fde353df7095c6b19bc6aa348882960a (diff)
rename get_array() as data_array()
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@544 f88db872-0e4f-0410-b76b-b9085cfa78c5
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)