From c337575f69550827da75588311ecf2714859be15 Mon Sep 17 00:00:00 2001 From: svenbarth Date: Sun, 2 Sep 2018 16:20:32 +0000 Subject: [PATCH] * 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 - --- tests/webtbs/tw26481.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/webtbs/tw26481.pp b/tests/webtbs/tw26481.pp index 9c83cd5281..dd83820b38 100644 --- a/tests/webtbs/tw26481.pp +++ b/tests/webtbs/tw26481.pp @@ -22,7 +22,7 @@ type function Compare(constref ALeft, ARight: T): Integer; override; end; -function TGOrdinalStringComparer.Compare(constref ALeft, +function TGOrdinalStringComparer.Compare(constref ALeft, ARight: T): Integer; begin Result := FComparer.Compare(ALeft, ARight);