From 7a63cf013b023edb3c647d160c964fd1983ef13b Mon Sep 17 00:00:00 2001
From: Richard Comblen <richard.comblen@uclouvain.be>
Date: Tue, 16 Feb 2010 13:15:51 +0000
Subject: [PATCH] Fixed typo

---
 Solver/dgRungeKutta.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Solver/dgRungeKutta.cpp b/Solver/dgRungeKutta.cpp
index b07225b1a5..94e7db089f 100644
--- a/Solver/dgRungeKutta.cpp
+++ b/Solver/dgRungeKutta.cpp
@@ -4,7 +4,6 @@
 #include "dgLimiter.h"
 #include "dgAlgorithm.h"
 #include "dgGroupOfElements.h"
-#include "bindings.h"
 
 double dgRungeKutta::iterateEuler(const dgConservationLaw *claw, double dt, dgDofContainer *solution) {
   double A[] = {0};
@@ -72,6 +71,9 @@ double dgRungeKutta::diagonalRK (const dgConservationLaw *claw,
 
 dgRungeKutta::dgRungeKutta():_limiter(NULL) {}
 
+
+#include "Bindings.h"
+
 void dgRungeKutta::registerBindings(binding *b) {
   classBinding *cb = b->addClass<dgRungeKutta>("dgRungeKutta");
   cb->setDescription("various explicit Runge-Kutta time stepping schemes");
-- 
GitLab