Skip to content

Commit 8cfa1d6

Browse files
committed
Fixes issue #21 (compilation error in debug mode).
1 parent 4311101 commit 8cfa1d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples++-load/Element_Mixte3d.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2274,8 +2274,8 @@ namespace Fem2D {
22742274
const GQuadratureFormular<R3> TypeOfFE_RT1_3d::QFtetra(QuadratureFormular_Tet_2);
22752275

22762276
TypeOfFE_RT1_3d::TypeOfFE_RT1_3d (): GTypeOfFE<Mesh3>(dfon, d, 1, 3 * QFface.n * 3 * Element::nf + 3 * QFtetra.n * 3 * 3, Element::nf *QFface.n + QFtetra.n, false, true) {
2277-
assert(QFe.n);
2278-
assert(QFf.n);
2277+
assert(QFface.n);
2278+
assert(QFtetra.n);
22792279
// 4 ref tetra vertices
22802280
R3 Pt [] = {R3(0., 0., 0.), R3(1., 0., 0.), R3(0., 1., 0.), R3(0., 0., 1.)};
22812281

0 commit comments

Comments
 (0)