prevent rt_term error on windows

see #45, calling d_rt_term on windows leads to aexception originated frrom the GC
This commit is contained in:
Basile Burg 2020-05-28 16:39:51 +02:00
parent a1ae6e666a
commit 3567c48c9c
1 changed files with 2 additions and 0 deletions

View File

@ -137,5 +137,7 @@ initialization
setRtOptions();
d_rt_init();
finalization
{$IFDEF POSIX}
d_rt_term();
{$ENDIF}
end.