summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-02-15 16:03:18 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-02-15 16:03:18 -0300
commitd7ea20c1664a23bb8606bff85028c01f3b123fde (patch)
tree368e9a5993022fd5b787224f73351221f45588c5
parent4333aa240c68f22b235981bed56d11a592fdfd1d (diff)
parent2478935f9654de9b516f61a43e1b0e0f0d97fb26 (diff)
Merge pull request #1371 from erbridge/fix_shadow_declaration
Fix a shadow declaration
-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);
}
};