You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@locus.apache.org on 2000/08/07 22:27:26 UTC

cvs commit: xml-xalan/c/src/XercesParserLiaison XercesNamedNodeListCache.cpp

dbertoni    00/08/07 13:27:21

  Modified:    c/src/XercesParserLiaison XercesNamedNodeListCache.cpp
  Log:
  Fixes for AIX compiler.
  
  Revision  Changes    Path
  1.2       +2 -2      xml-xalan/c/src/XercesParserLiaison/XercesNamedNodeListCache.cpp
  
  Index: XercesNamedNodeListCache.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XercesParserLiaison/XercesNamedNodeListCache.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XercesNamedNodeListCache.cpp	2000/04/11 14:39:30	1.1
  +++ XercesNamedNodeListCache.cpp	2000/08/07 20:27:16	1.2
  @@ -112,7 +112,7 @@
   
   	if (i != m_cachedNodeLists.end())
   	{
  -		return i->second;
  +		return (*i).second;
   	}
   	else
   	{
  @@ -148,7 +148,7 @@
   
   	if (i != m_cachedNodeLists.end())
   	{
  -		return i->second;
  +		return (*i).second;
   	}
   	else
   	{