aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch_system.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/patch/patch_system.hh')
-rw-r--r--src/patch/patch_system.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/patch/patch_system.hh b/src/patch/patch_system.hh
index 2b2f1c9..6eb70d6 100644
--- a/src/patch/patch_system.hh
+++ b/src/patch/patch_system.hh
@@ -498,13 +498,13 @@ private:
int N_grid_points_, ghosted_N_grid_points_;
// [pn] = --> individual patches
- std::vector<patch *> all_patches_;
+ vector<patch *> all_patches_;
// [pn] = starting grid point number of individual patches
// ... arrays are actually of size N_patches_+1, the [N_patches_]
// entries are == N_grid_points_ and ghosted_N_grid_points_
- std::vector<int> starting_gpn_;
- std::vector<int> ghosted_starting_gpn_;
+ vector<int> starting_gpn_;
+ vector<int> ghosted_starting_gpn_;
// pointers to storage blocks for all gridfns
// ... patches point into these, but we own the storage blocks