Explorar o código

Merge pull request #1371 from erbridge/fix_shadow_declaration

Fix a shadow declaration
Juan Linietsky %!s(int64=10) %!d(string=hai) anos
pai
achega
d7ea20c166
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      core/list.h

+ 2 - 2
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);
 		}
 	};