Skip to content
Snippets Groups Projects
Commit 487255a4 authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Dmitri Naumov
Browse files

[MaL] GaussLegendre: Add missing static specifier.

parent c0f9f28a
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,8 @@ GaussLegendreTet<2>::X = {{ {{1./4., 1./4., 1./4.}},
{{1./6., 1./6., 1./2.}} }};
double const GaussLegendreTet<2>::W[5] = {-2./15., 0.075, 0.075, 0.075, 0.075};
std::array<std::array<double, 3>, GaussLegendreTet<3>::NPoints> initGLTet3X()
static std::array<std::array<double, 3>, GaussLegendreTet<3>::NPoints>
initGLTet3X()
{
// Cf. Gellert, M., Harbord, R., 1991. Moderate degree cubature formulas for
// 3-D tetrahedral finite-element approximations. Communications in Applied
......
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