summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/list.h b/core/list.h
index 0e4ba71ac4..ef30e43d21 100644
--- a/core/list.h
+++ b/core/list.h
@@ -607,9 +607,9 @@ public:
struct AuxiliaryComparator {
C compare;
- _FORCE_INLINE_ bool operator()(const Element *A,const Element* B) const {
+ _FORCE_INLINE_ bool operator()(const Element *a,const Element* b) const {
- return compare(A->value,B->value);
+ return compare(a->value,b->value);
}
};