mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 12:25:59 +02:00
- removed "const" from first parameter of check_configfile(), because that
routine is called with the same variable passed as the first and second parameter, so the first one is not constand (since the second one is a "var" para) -- this caused errors when compiling the compiler with -gt git-svn-id: trunk@33202 -
This commit is contained in:
parent
70cd8f6e59
commit
741c91275a
@ -3147,7 +3147,7 @@ end;
|
|||||||
Callable Routines
|
Callable Routines
|
||||||
****************************************************************************}
|
****************************************************************************}
|
||||||
|
|
||||||
function check_configfile(const fn:string;var foundfn:string):boolean;
|
function check_configfile(fn:string; var foundfn:string):boolean;
|
||||||
|
|
||||||
function CfgFileExists(const fn:string):boolean;
|
function CfgFileExists(const fn:string):boolean;
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user