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

[PL] Add an explicit break in a switch-case.

parent 83860fd4
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,7 @@ void computeBMatrix(DNDX_Type const& dNdx, BMatrixType& b_matrix) ...@@ -47,6 +47,7 @@ void computeBMatrix(DNDX_Type const& dNdx, BMatrixType& b_matrix)
b_matrix(3, NPOINTS + i) = dNdx(0, i) / std::sqrt(2); b_matrix(3, NPOINTS + i) = dNdx(0, i) / std::sqrt(2);
b_matrix(0, i) = dNdx(0, i); b_matrix(0, i) = dNdx(0, i);
} }
break;
default: default:
break; break;
} }
......
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