aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetRegrid2
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/CarpetRegrid2')
-rw-r--r--Carpet/CarpetRegrid2/src/paramcheck.cc12
-rw-r--r--Carpet/CarpetRegrid2/src/regrid.cc16
2 files changed, 15 insertions, 13 deletions
diff --git a/Carpet/CarpetRegrid2/src/paramcheck.cc b/Carpet/CarpetRegrid2/src/paramcheck.cc
index fd55929e3..920829d23 100644
--- a/Carpet/CarpetRegrid2/src/paramcheck.cc
+++ b/Carpet/CarpetRegrid2/src/paramcheck.cc
@@ -1,6 +1,6 @@
-#include "cctk.h"
-#include "cctk_Arguments.h"
-#include "cctk_Parameters.h"
+#include <cctk.h>
+#include <cctk_Arguments.h>
+#include <cctk_Parameters.h>
#include "carpet.hh"
@@ -13,12 +13,14 @@ namespace CarpetRegrid2 {
extern "C" {
- void CarpetRegrid2_ParamCheck (CCTK_ARGUMENTS);
+ void
+ CarpetRegrid2_ParamCheck (CCTK_ARGUMENTS);
}
- void CarpetRegrid2_ParamCheck (CCTK_ARGUMENTS)
+ void
+ CarpetRegrid2_ParamCheck (CCTK_ARGUMENTS)
{
DECLARE_CCTK_ARGUMENTS;
DECLARE_CCTK_PARAMETERS;
diff --git a/Carpet/CarpetRegrid2/src/regrid.cc b/Carpet/CarpetRegrid2/src/regrid.cc
index 5f581d3b6..64172c039 100644
--- a/Carpet/CarpetRegrid2/src/regrid.cc
+++ b/Carpet/CarpetRegrid2/src/regrid.cc
@@ -4,15 +4,15 @@
#include <iostream>
#include <vector>
-#include "cctk.h"
-#include "cctk_Parameters.h"
+#include <cctk.h>
+#include <cctk_Parameters.h>
-#include "bbox.hh"
-#include "bboxset.hh"
-#include "defs.hh"
-#include "dh.hh"
-#include "gh.hh"
-#include "vect.hh"
+#include <bbox.hh>
+#include <bboxset.hh>
+#include <defs.hh>
+#include <dh.hh>
+#include <gh.hh>
+#include <vect.hh>
#include "carpet.hh"