Changeset 19801

Show
Ignore:
Timestamp:
02/06/07 11:30:57 (2 years ago)
Author:
patrick
Message:

Minor touch ups. No functional changes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/trunk/modules/jackal/config/jccl/Config/Configuration.cpp

    r19729 r19801  
    207207      // Go through the <include> XML elements. 
    208208      cppdom::NodeList inc_list = cfg_node->getChildren(tokens::INCLUDE); 
    209       for ( cppdom::NodeList::iterator itr = inc_list.begin(); 
    210             itr != inc_list.end(); 
    211             ++itr ) 
    212       { 
    213          std::string cfg_filename = (*itr)->getCdata(); 
     209      typedef cppdom::NodeList::iterator iter_type; 
     210      for ( iter_type itr = inc_list.begin(); itr != inc_list.end(); ++itr ) 
     211      { 
     212         const std::string cfg_filename = (*itr)->getCdata(); 
    214213         vprDEBUG(jcclDBG_CONFIG, vprDBG_CONFIG_LVL) 
    215214            << "Including " << cfg_filename << std::endl 
     
    217216 
    218217         // Load the file by making a recursive call to this method. We use 
    219          // mFileName so that the fully expanded path to the includin file is 
     218         // mFileName so that the fully expanded path to the including file is 
    220219         // used as the "parent" file. 
    221220         load(cfg_filename, mFileName);