mirror of
https://github.com/boostorg/build.git
synced 2026-02-14 00:32:11 +00:00
Boost Jam cleanup - renamed path_add_key() to path_key__register_long_path().
[SVN r79304]
This commit is contained in:
@@ -166,7 +166,7 @@ void file_dirscan( OBJECT * dir, scanback func, void * closure )
|
||||
path_build( &f, filename, 0 );
|
||||
|
||||
filename_obj = object_new( filename->value );
|
||||
path_add_key( filename_obj );
|
||||
path_key__register_long_path( filename_obj );
|
||||
files = list_push_back( files, filename_obj );
|
||||
ff = file_info( filename_obj );
|
||||
ff->is_file = finfo->attrib & _A_SUBDIR ? 0 : 1;
|
||||
|
||||
@@ -72,7 +72,7 @@ OBJECT * path_as_key( OBJECT * path );
|
||||
* long form. Avoids the need for some subsequent path_as_key() call to do a
|
||||
* potentially expensive short-->long path conversion.
|
||||
*/
|
||||
void path_add_key( OBJECT * long_path );
|
||||
void path_key__register_long_path( OBJECT * long_path );
|
||||
|
||||
#ifdef USE_PATHUNIX
|
||||
/* Returns a static pointer to the system dependent path to the temporary
|
||||
|
||||
@@ -471,7 +471,7 @@ static path_key_entry * path_key( OBJECT * const path,
|
||||
}
|
||||
|
||||
|
||||
void path_add_key( OBJECT * long_path )
|
||||
void path_key__register_long_path( OBJECT * long_path )
|
||||
{
|
||||
path_key( long_path, 1 );
|
||||
}
|
||||
@@ -503,7 +503,7 @@ void path_done( void )
|
||||
#else /* NT */
|
||||
|
||||
|
||||
void path_add_key( OBJECT * path )
|
||||
void path_key__register_long_path( OBJECT * path )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user