Remove #ifdef that's no longer necessary now that STL headers aren't included.

git-svn-id: svn://10.0.0.236/trunk@69603 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
waterson%netscape.com
2000-05-14 00:14:19 +00:00
parent 04f4eede47
commit fa1241b5bc
6 changed files with 0 additions and 12 deletions

View File

@@ -426,7 +426,6 @@ operator==( const nsReadingIterator<CharT>& lhs, const nsReadingIterator<CharT>&
return lhs.operator->() == rhs.operator->();
}
#ifdef HAVE_CPP_UNAMBIGUOUS_STD_NOTEQUAL
template <class CharT>
inline
PRBool
@@ -434,7 +433,6 @@ operator!=( const nsReadingIterator<CharT>& lhs, const nsReadingIterator<CharT>&
{
return lhs.operator->() != rhs.operator->();
}
#endif
#define NS_DEF_1_STRING_PTR_COMPARISON_OPERATOR(comp, _StringT, _CharT) \

View File

@@ -406,7 +406,6 @@ operator==( const nsWritingIterator<CharT>& lhs, const nsWritingIterator<CharT>&
return lhs.operator->() == rhs.operator->();
}
#ifdef HAVE_CPP_UNAMBIGUOUS_STD_NOTEQUAL
template <class CharT>
inline
PRBool
@@ -414,7 +413,6 @@ operator!=( const nsWritingIterator<CharT>& lhs, const nsWritingIterator<CharT>&
{
return lhs.operator->() != rhs.operator->();
}
#endif