Skip to content
Snippets Groups Projects
Commit b075f100 authored by Henry Weller's avatar Henry Weller
Browse files

/primitives/triad: Initialize array to avoid warning from icpc

parent 6635d2ed
No related branches found
No related tags found
No related merge requests found
...@@ -199,7 +199,7 @@ void Foam::triad::operator+=(const triad& t2) ...@@ -199,7 +199,7 @@ void Foam::triad::operator+=(const triad& t2)
if (set() && t2.set()) if (set() && t2.set())
{ {
direction correspondance[3]; direction correspondance[3]{0, 0, 0};
short signd[3]; short signd[3];
for (direction i=0; i<3; i++) for (direction i=0; i<3; i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment