diff options
Diffstat (limited to 'base/res_list.hh')
-rw-r--r-- | base/res_list.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/res_list.hh b/base/res_list.hh index c856c1226..04c3b7cfa 100644 --- a/base/res_list.hh +++ b/base/res_list.hh @@ -103,7 +103,7 @@ class res_list : public res_list_base iterator prev(void) { return iterator(p->prev); } bool operator== (iterator x) { return (x.p == this->p); } bool operator != (iterator x) { return (x.p != this->p); } - T& operator * (void) { return *(p->data); } + T &operator * (void) { return *(p->data); } T* operator -> (void) { return p->data; } bool isnull(void) { return (p==0); } bool notnull(void) { return (p!=0); } |