From: mkr Date: Thu, 16 Mar 2006 15:41:30 +0000 (+0000) Subject: Fix for compilation error with gcc4.0.1: MEDMEM_GaussLocalization.hxx:166: error... X-Git-Tag: OCC_3_2_0a2_TC~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=fadd1c410da7de3ce0b4708a74bbe0fb1e76b529;p=modules%2Fmed.git Fix for compilation error with gcc4.0.1: MEDMEM_GaussLocalization.hxx:166: error: explicit qualification in declaration of `std::ostream& MEDMEM::operator<<(std::ostream&, const MEDMEM::GAUSS_LOCALIZATION&)'. --- diff --git a/src/MEDMEM/MEDMEM_GaussLocalization.hxx b/src/MEDMEM/MEDMEM_GaussLocalization.hxx index 5f6a3436c..b488cb304 100644 --- a/src/MEDMEM/MEDMEM_GaussLocalization.hxx +++ b/src/MEDMEM/MEDMEM_GaussLocalization.hxx @@ -162,7 +162,7 @@ namespace MEDMEM { } - template ostream & MEDMEM::operator<<(ostream &os, + template ostream & operator<<(ostream &os, const GAUSS_LOCALIZATION &loc) { os << "Localization Name : " << loc._locName << endl; os << "Geometric Type : " << MED_EN::geoNames[loc._typeGeo]<< endl;