diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-02-15 16:03:18 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-02-15 16:03:18 -0300 |
commit | d7ea20c1664a23bb8606bff85028c01f3b123fde (patch) | |
tree | 368e9a5993022fd5b787224f73351221f45588c5 | |
parent | 4333aa240c68f22b235981bed56d11a592fdfd1d (diff) | |
parent | 2478935f9654de9b516f61a43e1b0e0f0d97fb26 (diff) |
Merge pull request #1371 from erbridge/fix_shadow_declaration
Fix a shadow declaration
-rw-r--r-- | core/list.h | 4 |
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); } }; |