2
0
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:
Jurko Gospodnetić
2012-07-05 23:39:45 +00:00
parent 4efad5b55e
commit 64b368bd04
3 changed files with 4 additions and 4 deletions

View File

@@ -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;

View File

@@ -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

View File

@@ -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 )
{
}