瀏覽代碼

Fix a shadow declaration.

Felix Laurie von Massenbach 10 年之前
父節點
當前提交
2478935f96
共有 1 個文件被更改,包括 2 次插入2 次删除
  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);
 		}
 	};