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

Boost Jam cleanup - minor comment corrections.

[SVN r79675]
This commit is contained in:
Jurko Gospodnetić
2012-07-22 16:10:36 +00:00
parent 64494521bf
commit 28200e7f97

View File

@@ -132,7 +132,7 @@ LIST * headers1( LIST * l, OBJECT * file, int rec, regexp * re[] )
#endif
/* The following regexp is used to detect cases where a file is included
* through a line line "#include MACRO".
* through a line like "#include MACRO".
*/
if ( re_macros == 0 )
{
@@ -156,7 +156,7 @@ LIST * headers1( LIST * l, OBJECT * file, int rec, regexp * re[] )
l = list_push_back( l, object_new( re[ i ]->startp[ 1 ] ) );
}
/* special treatment for #include MACRO */
/* Special treatment for #include MACRO. */
if ( regexec( re_macros, buf ) && re_macros->startp[ 1 ] )
{
OBJECT * header_filename;