Browse Source

* fix test 26481: it tests for something different than the incorrect type parameters and in fact the need to fix this highlights the need for the previous changes

git-svn-id: trunk@39704 -
svenbarth 7 years ago
parent
commit
c337575f69
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/webtbs/tw26481.pp

+ 1 - 1
tests/webtbs/tw26481.pp

@@ -22,7 +22,7 @@ type
     function Compare(constref ALeft, ARight: T): Integer; override;
     function Compare(constref ALeft, ARight: T): Integer; override;
   end;
   end;
 
 
-function TGOrdinalStringComparer<THashFactory, T>.Compare(constref ALeft,
+function TGOrdinalStringComparer<T, THashFactory>.Compare(constref ALeft,
   ARight: T): Integer;
   ARight: T): Integer;
 begin
 begin
   Result := FComparer.Compare(ALeft, ARight);
   Result := FComparer.Compare(ALeft, ARight);