rtti: TValue char toString

This commit is contained in:
mattias 2025-02-04 19:02:50 +01:00
parent 35a8089beb
commit 62c21d3823

View File

@ -1372,6 +1372,7 @@ begin
tkEnumeration: Result := GetEnumName(TTypeInfoEnum(TypeInfo), AsOrdinal); tkEnumeration: Result := GetEnumName(TTypeInfoEnum(TypeInfo), AsOrdinal);
tkFloat: Result := FloatToStr(AsExtended, AFormatSettings); tkFloat: Result := FloatToStr(AsExtended, AFormatSettings);
tkInteger: Result := IntToStr(AsNativeInt); tkInteger: Result := IntToStr(AsNativeInt);
tkChar,
tkString: Result := AsString; tkString: Result := AsString;
else else
Result := ''; Result := '';