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

[MaL] Add braces around obj initializer.

This fixes a clang warning.
parent 16896684
No related branches found
No related tags found
No related merge requests found
...@@ -37,20 +37,20 @@ std::array<std::array<double, 3>, GaussLegendreTet<3>::NPoints> initGLTet3X() ...@@ -37,20 +37,20 @@ std::array<std::array<double, 3>, GaussLegendreTet<3>::NPoints> initGLTet3X()
const double e = 0.4544962958743506; const double e = 0.4544962958743506;
const double f = 0.045503704125649; const double f = 0.045503704125649;
return {{{a, b, b}, return {{{{a, b, b}},
{b, a, b}, {{b, a, b}},
{b, b, a}, {{b, b, a}},
{b, b, b}, {{b, b, b}},
{c, d, d}, {{c, d, d}},
{d, c, d}, {{d, c, d}},
{d, d, c}, {{d, d, c}},
{d, d, d}, {{d, d, d}},
{e, e, f}, {{e, e, f}},
{e, f, e}, {{e, f, e}},
{e, f, f}, {{e, f, f}},
{f, e, e}, {{f, e, e}},
{f, e, f}, {{f, e, f}},
{f, f, e}}}; {{f, f, e}}}};
} }
const std::array<std::array<double, 3>, GaussLegendreTet<3>::NPoints> const std::array<std::array<double, 3>, GaussLegendreTet<3>::NPoints>
......
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