Fix a shadow declaration.
This commit is contained in:
parent
4333aa240c
commit
2478935f96
1 changed files with 2 additions and 2 deletions
|
@ -607,9 +607,9 @@ public:
|
||||||
struct AuxiliaryComparator {
|
struct AuxiliaryComparator {
|
||||||
|
|
||||||
C compare;
|
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);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue