Changeset 477 for XIOS/trunk


Ignore:
Timestamp:
02/20/14 10:14:03 (10 years ago)
Author:
ymipsl
Message:

bug fix : content of the variable was automatically converted to lower string.

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/variable.cpp

    r472 r477  
    4242               << " ] variable is not defined !"); 
    4343      } 
    44       content = boost::to_lower_copy(boost::trim_copy(content)) ; 
     44      content = boost::trim_copy(content) ; 
    4545   } 
    4646 
     
    124124           enddata   = content.find_first_of ( ";", begindata ); 
    125125           subdata   = content.substr ( begindata, enddata-begindata); 
    126            subdata   = boost::to_lower_copy(boost::trim_copy(subdata)) ; 
     126           subdata   = boost::trim_copy(subdata) ; 
    127127           group_ptr->createChild(subid)->content = subdata ; 
    128128        } 
Note: See TracChangeset for help on using the changeset viewer.