--- trunk/src/utils/CaseConversion.hpp 2005/04/22 21:52:51 515 +++ trunk/src/utils/CaseConversion.hpp 2005/12/16 18:55:55 817 @@ -43,12 +43,13 @@ #include #include - +#include +#include 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_); }