* started to fix var. array -> dyn. array

git-svn-id: trunk@1626 -
This commit is contained in:
florian 2005-11-01 22:41:25 +00:00
parent 653f4b465d
commit 380d3be22c

View File

@ -120,6 +120,7 @@ procedure fpc_vararray_put(var d : variant;const s : variant;indices : psizeint;
function fpc_variant_to_dynarray(const v : variant;typeinfo : pointer) : pointer;compilerproc;
begin
result:=nil;
variantmanager.vartodynarray(result,v,typeinfo);
end;