1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From 902235520f776d09db3711ac16e9dace92d7f813 Mon Sep 17 00:00:00 2001
From: Jeremy Lorelli <jeremy.lorelli.1337@gmail.com>
Date: Sun, 22 Dec 2024 12:20:39 -0800
Subject: Fix compile error in tsSLList.h
Bug-Debian: https://bugs.debian.org/1096585
---
modules/libcom/src/cxxTemplates/tsSLList.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/modules/libcom/src/cxxTemplates/tsSLList.h
+++ b/modules/libcom/src/cxxTemplates/tsSLList.h
@@ -311,13 +311,13 @@
template < class T >
inline bool tsSLIterConst<T>::operator == ( const tsSLIterConst<T> &rhs ) const
{
- return this->pEntry == rhs.pConstEntry;
+ return this->pEntry == rhs.pEntry;
}
template < class T >
inline bool tsSLIterConst<T>::operator != (const tsSLIterConst<T> &rhs) const
{
- return this->pEntry != rhs.pConstEntry;
+ return this->pEntry != rhs.pEntry;
}
template < class T >
|