dbertoni    01/04/12 18:47:49

  Modified:    c/src/PlatformSupport STLHelper.hpp
  Log:
  Removed incorrect typenames.
  
  Revision  Changes    Path
  1.15      +6 -6      xml-xalan/c/src/PlatformSupport/STLHelper.hpp
  
  Index: STLHelper.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/STLHelper.hpp,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- STLHelper.hpp     2000/11/29 21:18:06     1.14
  +++ STLHelper.hpp     2001/04/13 01:47:49     1.15
  @@ -128,7 +128,7 @@
        typedef typename BaseClassType::result_type             result_type;
        typedef typename BaseClassType::argument_type   argument_type;
   
  -     typedef typename PairType                                               
value_type;
  +     typedef PairType                                                        
        value_type;
   
        /**
         * Retrieve the key of a key-value pair.
  @@ -136,8 +136,8 @@
         * @param thePair key-value pair
         * @return key
         */
  -     typename result_type
  -     operator()(const typename argument_type&        thePair) const
  +     result_type
  +     operator()(const argument_type&         thePair) const
        {
                return thePair.first;
        }
  @@ -165,7 +165,7 @@
        typedef typename BaseClassType::result_type             result_type;
        typedef typename BaseClassType::argument_type   argument_type;
   
  -     typedef typename PairType                                               
value_type;
  +     typedef PairType                                                        
        value_type;
   
        /**
         * Retrieve the value of a key-value pair.
  @@ -173,8 +173,8 @@
         * @param thePair key-value pair
         * @return value
         */
  -     typename result_type
  -     operator()(const typename argument_type&        thePair) const
  +     result_type
  +     operator()(const argument_type&         thePair) const
        {
                return thePair.second;
        }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to