From b5991cddb6420b794d8609d75f2eafe24a5d74d6 Mon Sep 17 00:00:00 2001 From: nge Date: Mon, 28 Sep 2009 19:57:53 +0000 Subject: [PATCH] Fix Compilation issue with gcc 4.3.4 and higher. --- src/CONVERTOR/VISU_Structures_impl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CONVERTOR/VISU_Structures_impl.cxx b/src/CONVERTOR/VISU_Structures_impl.cxx index eb797c47..25779529 100644 --- a/src/CONVERTOR/VISU_Structures_impl.cxx +++ b/src/CONVERTOR/VISU_Structures_impl.cxx @@ -1571,7 +1571,7 @@ namespace VISU int aNbGauss = 1; TGeom2NbGauss::const_iterator anIter = myGeom2NbGauss.begin(); for(; anIter != myGeom2NbGauss.end(); anIter++){ - aNbGauss = std::max(aNbGauss, anIter->second); + aNbGauss = std::max(aNbGauss, anIter->second); } return aNbGauss; } -- 2.39.2