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

IBM cc does not understand C++ comment (leading //).

Changed into using C-style comments (/* */)


[SVN r15187]
This commit is contained in:
Toon Knapen
2002-09-06 21:03:10 +00:00
parent f5e70d6708
commit 024158b9e3
2 changed files with 6 additions and 6 deletions

View File

@@ -303,7 +303,7 @@ make1a( state *pState)
push_state(&temp_stack, c->target, pState->t, T_STATE_MAKE1A);
}
// using stacks reverses the order of execution. Reverse it back
/* using stacks reverses the order of execution. Reverse it back */
push_stack_on_stack(&state_stack, &temp_stack);
}
@@ -503,10 +503,10 @@ make1c( state *pState )
for( c = t->parents; c; c = c->next )
push_state(&temp_stack, c->target, NULL, T_STATE_MAKE1B);
// must pop state before pushing any more
/* must pop state before pushing any more */
pop_state(&state_stack);
// using stacks reverses the order of execution. Reverse it back
/* using stacks reverses the order of execution. Reverse it back */
push_stack_on_stack(&state_stack, &temp_stack);
}
}

View File

@@ -303,7 +303,7 @@ make1a( state *pState)
push_state(&temp_stack, c->target, pState->t, T_STATE_MAKE1A);
}
// using stacks reverses the order of execution. Reverse it back
/* using stacks reverses the order of execution. Reverse it back */
push_stack_on_stack(&state_stack, &temp_stack);
}
@@ -503,10 +503,10 @@ make1c( state *pState )
for( c = t->parents; c; c = c->next )
push_state(&temp_stack, c->target, NULL, T_STATE_MAKE1B);
// must pop state before pushing any more
/* must pop state before pushing any more */
pop_state(&state_stack);
// using stacks reverses the order of execution. Reverse it back
/* using stacks reverses the order of execution. Reverse it back */
push_stack_on_stack(&state_stack, &temp_stack);
}
}