Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

checks: Remove extra semicolons in r.terraflow #4494

Merged
merged 2 commits into from
Oct 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion raster/r.terraflow/fill.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ void assignFinalDirections(AMI_STREAM<plateauStats> *statstr,
continue;
}
}
};
}

/* ********************************************************************** */
class directionElevationMerger {
Expand Down
2 changes: 1 addition & 1 deletion raster/r.terraflow/genericWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ void fillPit(ElevationWindow &win)
if (win.get(4) < min) {
win.set(4, min);
}
};
}
2 changes: 1 addition & 1 deletion raster/r.terraflow/sweep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ sweepOutput::sweepOutput()
#ifdef OUTPUT_TCI
tci = (tci_type)nodataType::ELEVATION_NODATA;
#endif
};
}

/* ------------------------------------------------------------ */
/* computes output parameters of cell (i,j) given the flow value, the
Expand Down
2 changes: 1 addition & 1 deletion raster/r.terraflow/weightWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ void weightWindow::compute(const dimension_type i, const dimension_type j,
cout << form("%3.2f ", weight.get(l));
cout << "]\n";
#endif
};
}

/* Find the dominant direction. Set corresponding weight to 1, and
sets all other weights to 0. Set sumweight and sumcontour.*/
Expand Down
Loading