From 29497b57db6ab33a4f48a65f0e6546d9887d35f9 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Thu, 18 Oct 2012 06:04:34 +0000
Subject: [PATCH] fix compile w/ old gcc

---
 Geo/Homology.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Geo/Homology.cpp b/Geo/Homology.cpp
index 69a14f6d1a..057a128c41 100644
--- a/Geo/Homology.cpp
+++ b/Geo/Homology.cpp
@@ -396,7 +396,7 @@ void Homology::findCompatibleBasisPair(int master, std::vector<int> dim)
       continue;
     }
 
-    std::vector<Chain<int>*> newBasis(n, NULL);
+    std::vector<Chain<int>*> newBasis(n);
 
     if(master==0) {
       for(int i = 0; i < n; i++) {
-- 
GitLab