From: David Wells Date: Sun, 16 Jul 2017 17:33:38 +0000 (-0400) Subject: Add another FE namespace fix. X-Git-Tag: v9.0.0-rc1~1387^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=389d50f66daf60003efd12f39a75bb578b5ed276;p=dealii.git Add another FE namespace fix. --- diff --git a/source/fe/fe_q.cc b/source/fe/fe_q.cc index a6941c5f76..714107825e 100644 --- a/source/fe/fe_q.cc +++ b/source/fe/fe_q.cc @@ -38,7 +38,7 @@ namespace internal return QGaussLobatto<1>(degree+1).get_points(); else { - typedef FE_Q_Base, 1, 1> FEQ; + typedef dealii::FE_Q_Base, 1, 1> FEQ; AssertThrow(false, FEQ::ExcFEQCannotHaveDegree0()); } return std::vector >();