------------------------------------------------------------------------

r48140 | pierre | 2021-01-11 22:17:09 +0000 (Mon, 11 Jan 2021) | 1 line

 Correct check of stringtype inside use_tag_prefix function
------------------------------------------------------------------------
--- Merging r48140 into '.':
U    compiler/dbgstabs.pas
--- Recording mergeinfo for merge of r48140 into '.':
 U   .

git-svn-id: branches/fixes_3_2@49447 -
This commit is contained in:
pierre 2021-06-01 20:59:46 +00:00
parent 2930a975fa
commit a092e59200

View File

@ -565,7 +565,7 @@ implementation
just associated to pointer types }
use_tag_prefix:=(def.typ in tagtypes) and
((def.typ<>stringdef) or
(tstringdef(tdef).stringtype in [st_shortstring,st_longstring]));
(tstringdef(def).stringtype in [st_shortstring,st_longstring]));
end;