2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Minor stylistic changes (added const modifiers in a couple of places).

[SVN r79842]
This commit is contained in:
Jurko Gospodnetić
2012-08-02 09:16:34 +00:00
parent 6988a81d5c
commit 89049659bc

View File

@@ -2297,7 +2297,7 @@ static void compile_parse( PARSE * parse, compiler * c, int result_location )
}
else if ( parse->type == PARSE_MODULE )
{
int nested_result = result_location == RESULT_NONE
int const nested_result = result_location == RESULT_NONE
? RESULT_NONE
: RESULT_RETURN;
compile_parse( parse->left, c, RESULT_STACK );
@@ -2324,7 +2324,7 @@ static void compile_parse( PARSE * parse, compiler * c, int result_location )
}
else if ( parse->type == PARSE_LIST )
{
OBJECT * o = parse->string;
OBJECT * const o = parse->string;
char const * s = object_str( o );
VAR_PARSE_GROUP * group;
current_file = object_str( parse->file );