mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 01:12:13 +00:00
Boost Jam code cleanup - ExecCmdCallback timing_info * parameter marked as pointer to const.
[SVN r79074]
This commit is contained in:
@@ -32,7 +32,7 @@ typedef void (* ExecCmdCallback)
|
||||
(
|
||||
void * closure,
|
||||
int status,
|
||||
timing_info *,
|
||||
timing_info const *,
|
||||
char const * invoked_command,
|
||||
char const * command_output
|
||||
);
|
||||
|
||||
@@ -99,7 +99,7 @@ static void make1atail ( state * );
|
||||
static void make1b ( state * );
|
||||
static void make1c ( state * );
|
||||
static void make1d ( state * );
|
||||
static void make_closure( void * closure, int status, timing_info *,
|
||||
static void make_closure( void * closure, int status, timing_info const *,
|
||||
char const *, char const * );
|
||||
|
||||
typedef struct _stack
|
||||
@@ -807,7 +807,7 @@ static void make_closure
|
||||
(
|
||||
void * closure,
|
||||
int status,
|
||||
timing_info * time,
|
||||
timing_info const * time,
|
||||
char const * executed_command,
|
||||
char const * command_output
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user