--- trunk/src/utils/CaseConversion.hpp 2005/04/22 21:52:51 515 +++ trunk/src/utils/CaseConversion.hpp 2005/05/11 23:15:05 526 @@ -48,7 +48,7 @@ namespace oopse { /** tolower functor */ struct toLowerFunctor : public std::unary_function { - toLowerFunctor( const std::locale& loc ) : loc( loc ) {} + toLowerFunctor( const std::locale& loc ) : loc_( loc ) {} char operator()(char c) const { return std::tolower(c, loc_); }