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

Comparing trunk/OOPSE-4/src/utils/Predicate.hpp (file contents):
Revision 2213 by chuckv, Fri Apr 22 21:57:16 2005 UTC vs.
Revision 2515 by tim, Fri Dec 16 18:26:41 2005 UTC

# Line 10 | Line 10 | namespace oopse {
10   #define UTILS_PREDICATE_HPP
11   #include <locale>
12  
13 +
14 +
15 + #if defined(__SUNPRO_CC)
16 + #  define USE_FACET(Type, loc) std::use_facet(loc, static_cast<Type*>(0))
17 + #else
18 + #  define USE_FACET(Type, loc) std::use_facet< Type >(loc)
19 + #endif
20 +
21   namespace oopse {
22  
23   template<typename Derived>
# Line 22 | Line 30 | struct CharClassification: public PredFacade<CharClass
30  
31      template<typename CharT>
32      bool operator()( CharT c ) const {
33 <        return std::use_facet< std::ctype<CharT> >(loc_).is( type_, c );
33 >        return USE_FACET(std::ctype<CharT>, loc_).is( type_, c );
34      }
35  
36      private:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines