Skip to content
Snippets Groups Projects
Commit 6e985b9b authored by Philippe Canal's avatar Philippe Canal
Browse files

fix for icc

git-svn-id: http://root.cern.ch/svn/root/trunk@21094 27541ba8-7e3a-0410-8455-c3a389f83636
parent 0a9ce94c
Branches
Tags
No related merge requests found
......@@ -92,7 +92,7 @@ using namespace std;
#pragma link C++ function getline;
//#endif // G__ROOT
#pragma if (G__GNUC_VER>=3001)
#pragma if (G__GNUC_VER>=3001) && !defined(G__INTEL_COMPILER)
#pragma link C++ function operator==(const string::iterator&,const string::iterator&);
#pragma link C++ function operator!=(const string::iterator&,const string::iterator&);
#pragma endif
......
......@@ -307,7 +307,7 @@ istream& getline(istream& is,string& st);
istream& getline(istream& is,string& st,char delim);
#if (G__GNUC_VER>=3001)
#if (G__GNUC_VER>=3001) && !defined(G__INTEL_COMPILER)
bool operator==(const string::iterator& _Left, const string::iterator& _Right);
bool operator!=(const string::iterator& _Left, const string::iterator& _Right);
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment