Browse Source

* [utlSetHelper] fixed bug in Compare method

master
Bergmann89 11 years ago
parent
commit
dc966012a9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      uutlSetHelper.inc

+ 1
- 1
uutlSetHelper.inc View File

@@ -74,7 +74,7 @@ begin
if (i in aSet1) and not (i in aSet2) then begin
result := 1;
break;
end else if not (i in aSet2) and (i in aSet2) then begin
end else if not (i in aSet1) and (i in aSet2) then begin
result := -1;
break;
end;


Loading…
Cancel
Save