Merge pull request #1371 from erbridge/fix_shadow_declaration

Fix a shadow declaration
This commit is contained in:
Juan Linietsky 2015-02-15 16:03:18 -03:00
commit d7ea20c166
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
};