aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-01-16 17:07:08 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-01-16 17:07:08 +0000
commit70dfc183be3fff193d86eefef8c68b3ea1ad5438 (patch)
tree653adf59bbeac0da1cf1e7806d96b8e17bacbaf8 /src/include
parentccd050da1496ca00845174ffcd4f4eaf22a9b792 (diff)
* change to not use STL vector class any more
(it caused portability problems on platinum) ==> move stl_vector.hh from src/include/ to archive/ directory * convert patch_system_type and initial_guess_method parameters to be array parameters, i.e. they're now set individually for each AH we want to find git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@920 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/include')
-rw-r--r--src/include/stl_vector.hh22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/include/stl_vector.hh b/src/include/stl_vector.hh
deleted file mode 100644
index 9e4d817..0000000
--- a/src/include/stl_vector.hh
+++ /dev/null
@@ -1,22 +0,0 @@
-// stl_vector.hh -- define STL vector class in global namespace.
-// $Header$
-
-//
-// prerequisites:
-// "cctk.h"
-//
-
-//
-// This header file defines the STL vector class in the global namespace.
-// It makes use of Cactus's configuration-time probing of what header
-// files are available.
-//
-
-#if defined(HAVE_VECTOR)
- #include <vector>
- using std::vector;
-#elif defined(HAVE_VECTOR_H)
- #include <vector.h>
-#else
- #error "Cactus couldn't find the STL vector class!"
-#endif