diff options
author | Felix Laurie von Massenbach <felix@erbridge.co.uk> | 2015-02-15 18:09:11 +0000 |
---|---|---|
committer | Felix Laurie von Massenbach <felix@erbridge.co.uk> | 2015-02-15 18:09:11 +0000 |
commit | 2478935f9654de9b516f61a43e1b0e0f0d97fb26 (patch) | |
tree | 368e9a5993022fd5b787224f73351221f45588c5 /core/list.h | |
parent | 4333aa240c68f22b235981bed56d11a592fdfd1d (diff) | |
download | redot-engine-2478935f9654de9b516f61a43e1b0e0f0d97fb26.tar.gz |
Fix a shadow declaration.
Diffstat (limited to 'core/list.h')
-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); } }; |