aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Requirements
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-05-26 16:35:35 -0400
committerErik Schnetter <schnetter@gmail.com>2013-05-26 16:35:35 -0400
commit13856c1d4fec72939f4e829863e085741505d4b8 (patch)
tree5bf7b3d22b5eb7939bda64b6a6152a9cdece41c4 /Carpet/Requirements
parentfaf812847c85a1f0744a322810abfb418a0a811c (diff)
Requirements: Enforce 80 character line length limit
Diffstat (limited to 'Carpet/Requirements')
-rw-r--r--Carpet/Requirements/src/Requirements.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/Carpet/Requirements/src/Requirements.cc b/Carpet/Requirements/src/Requirements.cc
index 8375e5ab8..526f13d29 100644
--- a/Carpet/Requirements/src/Requirements.cc
+++ b/Carpet/Requirements/src/Requirements.cc
@@ -267,15 +267,16 @@ namespace Requirements {
cGH const* const cctkGH = static_cast<cGH const*>(cctkGH_);
DECLARE_CCTK_PARAMETERS;
if (check_requirements) {
- // TODO: come up with a scheme to avoid constructing and destroying clauses
+ // TODO: come up with a scheme to avoid constructing and
+ // destroying clauses
cFunctionData const* const function_data =
CCTK_ScheduleQueryCurrentFunction(cctkGH);
int const reflevel = GetRefinementLevel(cctkGH);
int const map = GetMap(cctkGH);
int const timelevel = GetTimeLevel(cctkGH);
int const timelevel_offset = GetTimeLevelOffset(cctkGH);
- // TODO: design an interface to all_state.before_routine that operates
- // on indices and claues directly
+ // TODO: design an interface to all_state.before_routine that
+ // operates on indices and claues directly
for (int v=0; v<nvars; ++v) {
cFunctionData temp_function_data = *function_data;
char* const fullname = CCTK_FullName(varinds[v]);