fixed != by suggestion of Björn Karlsson

[SVN r14090]
This commit is contained in:
Jaakko Järvi
2002-06-06 15:44:51 +00:00
parent 08be3cbe04
commit 22d8e8ecc0

View File

@ -69,7 +69,7 @@ inline bool neq(const T1& lhs, const T2& rhs) {
neq(lhs.get_tail(), rhs.get_tail());
}
template<>
inline bool neq<null_type,null_type>(const null_type&, const null_type&) { return true; }
inline bool neq<null_type,null_type>(const null_type&, const null_type&) { return false; }
template<class T1, class T2>
inline bool lt(const T1& lhs, const T2& rhs) {