Forráskód Böngészése

------------------------------------------------------------------------
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 -

pierre 4 éve
szülő
commit
a092e59200
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      compiler/dbgstabs.pas

+ 1 - 1
compiler/dbgstabs.pas

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