Skip to content
Snippets Groups Projects
Commit 0c1b6435 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix msvc compile

parent 2fe66555
Branches
Tags
No related merge requests found
......@@ -205,7 +205,9 @@ double dgRungeKutta::nonDiagonalRK(const dgConservationLaw *claw,
}
double dgRungeKutta::iterate43Multirate(const dgConservationLaw *claw, double dt, dgDofContainer *solution){
double dgRungeKutta::iterate43Multirate(const dgConservationLaw *claw, double dt,
dgDofContainer *solution)
{
double A[4][4]={
{0, 0, 0, 0},
{1.0/2.0, 0, 0 ,0},
......@@ -376,6 +378,8 @@ double dgRungeKutta::iterate43Multirate(const dgConservationLaw *claw, double dt
delete []K;
return solution->norm();
*/
return 0.;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment