mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 14:47:55 +02:00
* fix for #32352: a unit does not need to be re-deref'ed if it just had been recompiled
git-svn-id: trunk@44026 -
This commit is contained in:
parent
8dc8647c7b
commit
90a40ab9ca
@ -2046,7 +2046,9 @@ var
|
||||
begin
|
||||
{ When we don't have any data stored yet there
|
||||
is nothing to resolve }
|
||||
if interface_compiled then
|
||||
if interface_compiled and
|
||||
{ it makes no sense to re-resolve the unit if it is already finally compiled }
|
||||
not(state=ms_compiled) then
|
||||
begin
|
||||
Message1(unit_u_reresolving_unit,modulename^);
|
||||
tstoredsymtable(globalsymtable).deref(false);
|
||||
|
Loading…
Reference in New Issue
Block a user