* Fix wrong raise statement. Fixes issue #40889

This commit is contained in:
Michaël Van Canneyt 2024-08-13 09:41:00 +02:00
parent 276618563c
commit 43660084b6

View File

@ -67,7 +67,7 @@ begin
'W':
Result := eawW;
else
raise EArgumentException('Unknown east asian width: ''' + S + '''');
raise EArgumentException.Create('Unknown east asian width: ''' + S + '''');
end;
end;