ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/utils/CaseConversion.hpp
(Generate patch)

Comparing trunk/OOPSE-4/src/utils/CaseConversion.hpp (file contents):
Revision 2212 by tim, Fri Apr 22 21:52:51 2005 UTC vs.
Revision 2223 by chuckv, Wed May 11 23:15:05 2005 UTC

# Line 48 | Line 48 | namespace oopse {
48  
49      /** tolower functor */
50      struct toLowerFunctor : public std::unary_function<char, char> {
51 <        toLowerFunctor( const std::locale& loc ) : loc( loc ) {}
51 >        toLowerFunctor( const std::locale& loc ) : loc_( loc ) {}
52          char operator()(char c) const {
53              return std::tolower(c, loc_);
54          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines