summaryrefslogtreecommitdiffstats
path: root/core/list.h
diff options
context:
space:
mode:
authorFelix Laurie von Massenbach <felix@erbridge.co.uk>2015-02-15 18:09:11 +0000
committerFelix Laurie von Massenbach <felix@erbridge.co.uk>2015-02-15 18:09:11 +0000
commit2478935f9654de9b516f61a43e1b0e0f0d97fb26 (patch)
tree368e9a5993022fd5b787224f73351221f45588c5 /core/list.h
parent4333aa240c68f22b235981bed56d11a592fdfd1d (diff)
downloadredot-engine-2478935f9654de9b516f61a43e1b0e0f0d97fb26.tar.gz
Fix a shadow declaration.
Diffstat (limited to 'core/list.h')
-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);
}
};