diff --git a/include/JSystem/JGadget/linklist.h b/include/JSystem/JGadget/linklist.h index ac44fba0..764830e7 100644 --- a/include/JSystem/JGadget/linklist.h +++ b/include/JSystem/JGadget/linklist.h @@ -217,8 +217,8 @@ public: public: const_iterator(TNodeLinkList::const_iterator it) : mIt(it) { } - friend bool operator== (const_iterator lhs, const_iterator rhs) { return (lhs.mIt == rhs.mIt); } - friend bool operator!= (const_iterator lhs, const_iterator rhs) { return !(lhs == rhs); } + friend bool operator==(const_iterator lhs, const_iterator rhs) { return (lhs.mIt == rhs.mIt); } + friend bool operator!=(const_iterator lhs, const_iterator rhs) { return !(lhs == rhs); } const_iterator& operator++() { ++mIt;