2
0
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:
Jurko Gospodnetić
2012-06-25 08:09:07 +00:00
parent a06d5ddb4c
commit 4070a6957f
2 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ typedef void (* ExecCmdCallback)
(
void * closure,
int status,
timing_info *,
timing_info const *,
char const * invoked_command,
char const * command_output
);

View File

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