Bladeren bron

* fixed nested comment warning

git-svn-id: trunk@13450 -
florian 16 jaren geleden
bovenliggende
commit
44f588b7ad
1 gewijzigde bestanden met toevoegingen van 3 en 2 verwijderingen
  1. 3 2
      rtl/objpas/sysutils/sysstr.inc

+ 3 - 2
rtl/objpas/sysutils/sysstr.inc

@@ -35,7 +35,8 @@ begin
    end;
 end;
 
-{ declaring this breaks delphi compatibility and e.g. tw3721.pp
+{$ifdef dummy}
+{ declaring this breaks delphi compatibility and e.g. tw3721.pp }
 FUNCTION NewStr (Const S: ShortString): PShortString;
 VAR P: PShortString;
 BEGIN
@@ -48,7 +49,7 @@ BEGIN
      End;
    NewStr := P;                                       { Return result }
 END;
-}
+{$endif dummy}
 
 {   DisposeStr frees the memory occupied by S   }