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

Added comment suggested by volodya.

[SVN r66456]
This commit is contained in:
Bryce Adelstein-Lelbach
2010-11-08 17:05:55 +00:00
parent 754bc58425
commit 97eeccd165

View File

@@ -50,8 +50,10 @@ void do_ts(int** graph, int current_vertex, int* colors, int** result_ptr)
if (colors[adjacent_vertex] == white)
do_ts(graph, adjacent_vertex, colors, result_ptr);
//else if (colors[adjacent_vertex] == gray)
//; /* This is loop. Not sure what to do... */
/* The vertex is either black, in which case we don't have to do
anything, a gray, in which case we have a loop. If we have a loop,
it's not clear what useful diagnostic we can emit, so we emit
nothing. */
}
colors[current_vertex] = black;
**result_ptr = current_vertex;