This website works better with JavaScript.
Home
Explore
Help
Sign In
freepascal
/
utils
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
* [utlSetHelper] fixed bug in Compare method
master
Bergmann89
11 years ago
parent
bc7faefe61
commit
dc966012a9
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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 aSet
2
) and (i in aSet2) then begin
end else if not (i in aSet
1
) and (i in aSet2) then begin
result := -1;
break;
end;
Write
Preview
Loading…
Cancel
Save