From 2a80c4f49c9fa3b144653bb835935f0256c1ee6f Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Sun, 20 Sep 2009 09:45:57 +0000
Subject: [PATCH] *** empty log message ***

---
 Solver/dofManager.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Solver/dofManager.h b/Solver/dofManager.h
index ceb1591db8..ced9824050 100644
--- a/Solver/dofManager.h
+++ b/Solver/dofManager.h
@@ -30,7 +30,7 @@ class Dof{
     i1 = t % 10000;
     i2 = t / 10000;
   }
-  bool operator < ( const Dof & other) const
+  bool operator < (const Dof &other) const
   {
     if(_entity < other._entity) return true;
     if(_entity > other._entity) return false;
@@ -74,13 +74,13 @@ class dofManager{
    
   public:
   dofManager(linearSystem<dataMat> *l) : _current(l) { _linearSystems["A"] = l; }
-  inline void fixDof(long int ent, int type, const dataVec & value)
+  inline void fixDof(long int ent, int type, const dataVec &value)
   {
     fixed[Dof(ent, type)] = value;
   }
-  inline void fixVertex(MVertex*v, int iComp, int iField, const dataVec & value)
+  inline void fixVertex(MVertex*v, int iComp, int iField, const dataVec &value)
   {
-    fixDof(v->getNum(), Dof::createTypeWithTwoInts(iComp, iField ), value);
+    fixDof(v->getNum(), Dof::createTypeWithTwoInts(iComp, iField), value);
   }
   inline void numberDof(long int ent, int type)
   {
-- 
GitLab