mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-01 22:02:36 +02:00
* changed string argument of tppufile.putstring into a constant
git-svn-id: trunk@10852 -
This commit is contained in:
parent
6851c958e7
commit
0fb87b67b6
@ -260,7 +260,7 @@ type
|
||||
procedure putint64(i:int64);
|
||||
procedure putaint(i:aint);
|
||||
procedure putreal(d:ppureal);
|
||||
procedure putstring(s:string);
|
||||
procedure putstring(const s:string);
|
||||
procedure putnormalset(const b);
|
||||
procedure putsmallset(const b);
|
||||
procedure tempclose;
|
||||
@ -1025,7 +1025,7 @@ begin
|
||||
end;
|
||||
|
||||
|
||||
procedure tppufile.putstring(s:string);
|
||||
procedure tppufile.putstring(const s:string);
|
||||
begin
|
||||
putdata(s,length(s)+1);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user