diff --git a/fem/fe_coll.cpp b/fem/fe_coll.cpp index c51a605298..45885fa1c2 100644 --- a/fem/fe_coll.cpp +++ b/fem/fe_coll.cpp @@ -1742,7 +1742,11 @@ L2_FECollection::L2_FECollection(const int p, const int dim, const int type, } OtherDofOrd = NULL; - if (dim == 1) + if (dim == 0) + { + L2_Elements[Geometry::POINT] = new PointFiniteElement; + } + else if (dim == 1) { if (m_type == BasisType::Positive) {