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 72d29459 authored by gsell's avatar gsell
Browse files

compile issues fixed to the changes in class BoxCornerDomain

length_m has been removed but was still used in a constructor
parent 0fb1dfd2
No related branches found
No related tags found
1 merge request!448Resolve "master does not compile any more"
......@@ -33,7 +33,7 @@
//FIXME: ORDER HOW TO TRAVERSE NODES IS FIXED, THIS SHOULD BE MORE GENERIC! (PLACES MARKED)
BoxCornerDomain::BoxCornerDomain(double A, double B, double C, double length,
BoxCornerDomain::BoxCornerDomain(double A, double B, double C,
double L1, double L2, IntVector_t nr, Vector_t hr,
std::string interpl)
: RegularDomain(nr, hr, interpl)
......@@ -41,7 +41,6 @@ BoxCornerDomain::BoxCornerDomain(double A, double B, double C, double length,
setRangeMin(Vector_t(-A, -B, L1));
setRangeMax(Vector_t( A, B, L1 + L2));
C_m = C;
length_m = length;
throw OpalException("BoxCornerDomain::BoxCornerDomain()",
"This domain is currently not supported!");
......
......@@ -79,7 +79,7 @@ public:
* \param L1 length of the first part of the structure
* \param L2 length of the corner
*/
BoxCornerDomain(double A, double B, double C, double length,
BoxCornerDomain(double A, double B, double C,
double L1, double L2, IntVector_t nr, Vector_t hr,
std::string interpl);
~BoxCornerDomain();
......
......@@ -123,7 +123,6 @@ MGPoissonSolver::MGPoissonSolver ( PartBunch *beam,
new BoxCornerDomain(currentGeometry->getA(),
currentGeometry->getB(),
currentGeometry->getC(),
currentGeometry->getLength(),
currentGeometry->getL1(),
currentGeometry->getL2(),
orig_nr_m, hr_m, interpl));
......
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