@@ -5947,12 +5947,12 @@ Chuck_Namespace::~Chuck_Namespace()
5947
5947
// name: add_type()
5948
5948
// desc: add type to name space
5949
5949
// -----------------------------------------------------------------------------
5950
- void Chuck_Namespace::add_type ( const std::string & xid, Chuck_Type * type )
5950
+ void Chuck_Namespace::add_type ( const std::string & xid, Chuck_Type * theType )
5951
5951
{
5952
5952
// log it
5953
- EM_log ( CK_LOG_DEBUG, " namespace '%s' adding type '%s'->'%s'" , this ->name .c_str (), xid.c_str (), type ->name ().c_str () );
5953
+ EM_log ( CK_LOG_DEBUG, " namespace '%s' adding type '%s'->'%s'" , this ->name .c_str (), xid.c_str (), theType ->name ().c_str () );
5954
5954
// add it
5955
- this ->type .add ( xid, type );
5955
+ this ->type .add ( xid, theType );
5956
5956
}
5957
5957
5958
5958
@@ -5962,12 +5962,12 @@ void Chuck_Namespace::add_type( const std::string & xid, Chuck_Type * type )
5962
5962
// name: add_value()
5963
5963
// desc: add value to name space
5964
5964
// -----------------------------------------------------------------------------
5965
- void Chuck_Namespace::add_value ( const std::string & xid, Chuck_Value * value )
5965
+ void Chuck_Namespace::add_value ( const std::string & xid, Chuck_Value * theValue )
5966
5966
{
5967
5967
// log it
5968
- EM_log ( CK_LOG_DEBUG, " namespace '%s' adding value '%s'->'%s'" , this ->name .c_str (), xid.c_str (), value ->name .c_str () );
5968
+ EM_log ( CK_LOG_DEBUG, " namespace '%s' adding value '%s'->'%s'" , this ->name .c_str (), xid.c_str (), theValue ->name .c_str () );
5969
5969
// add it
5970
- this ->value .add ( xid, value );
5970
+ this ->value .add ( xid, theValue );
5971
5971
}
5972
5972
5973
5973
@@ -5977,12 +5977,12 @@ void Chuck_Namespace::add_value( const std::string & xid, Chuck_Value * value )
5977
5977
// name: add_func()
5978
5978
// desc: add type to name space
5979
5979
// -----------------------------------------------------------------------------
5980
- void Chuck_Namespace::add_func ( const std::string & xid, Chuck_Func * func )
5980
+ void Chuck_Namespace::add_func ( const std::string & xid, Chuck_Func * theFunc )
5981
5981
{
5982
5982
// log it
5983
- EM_log ( CK_LOG_DEBUG, " namespace '%s' adding func '%s'->'%s'" , this ->name .c_str (), xid.c_str (), func ->base_name .c_str () );
5983
+ EM_log ( CK_LOG_DEBUG, " namespace '%s' adding func '%s'->'%s'" , this ->name .c_str (), xid.c_str (), theFunc ->base_name .c_str () );
5984
5984
// add it
5985
- this ->func .add ( xid, func );
5985
+ this ->func .add ( xid, theFunc );
5986
5986
}
5987
5987
5988
5988
0 commit comments