From 0c1b6435be838e3c536c80f7fe7a6522a188f3f4 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Mon, 1 Mar 2010 11:25:09 +0000 Subject: [PATCH] fix msvc compile --- Solver/dgRungeKutta.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Solver/dgRungeKutta.cpp b/Solver/dgRungeKutta.cpp index 683adc2695..41eb3b325a 100644 --- a/Solver/dgRungeKutta.cpp +++ b/Solver/dgRungeKutta.cpp @@ -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.; } -- GitLab