Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 155f6001 authored by gsell's avatar gsell
Browse files

Wrong indentation fixed

parent 92a2278d
No related branches found
No related tags found
1 merge request!388Resolve "reading fields in H5Block format fails if z-dimension is less than the number of cores"
......@@ -721,7 +721,7 @@ bool RFCavity::isInside(const Vector_t &r) const {
double RFCavity::getElementLength() const {
double length = ElementBase::getElementLength();
if (length < 1e-10 && fieldmap_m != NULL) {
double start, end;
double start, end;
fieldmap_m->getFieldDimensions(start, end);
length = end - start;
}
......@@ -732,4 +732,12 @@ double RFCavity::getElementLength() const {
void RFCavity::getElementDimensions(double &begin,
double &end) const {
fieldmap_m->getFieldDimensions(begin, end);
}
\ No newline at end of file
}
// vi: set et ts=4 sw=4 sts=4:
// Local Variables:
// mode:c++
// c-basic-offset: 4
// indent-tabs-mode: nil
// require-final-newline: nil
// End:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment