dbertoni    2002/12/11 17:51:57

  Modified:    c/src/XPath XPathProcessorImpl.hpp
  Log:
  Added ifdef for using deque<bool> instead of vector<bool>.
  
  Revision  Changes    Path
  1.28      +8 -0      xml-xalan/c/src/XPath/XPathProcessorImpl.hpp
  
  Index: XPathProcessorImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XPathProcessorImpl.hpp,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- XPathProcessorImpl.hpp    5 Dec 2002 01:43:28 -0000       1.27
  +++ XPathProcessorImpl.hpp    12 Dec 2002 01:51:57 -0000      1.28
  @@ -104,12 +104,20 @@
                                XalanDOMString,
                                less<XalanDOMString> >  StringToStringMapType;
   
  +#if defined(XALAN_USE_DEQUE_FOR_VECTOR_BOOL)
  +     typedef deque<bool>                                     BoolVectorType;
  +#else
        typedef vector<bool>                            BoolVectorType;
  +#endif
   #else
        typedef std::map<XalanDOMString,
                                         XalanDOMString>        
StringToStringMapType;
   
  +#if defined(XALAN_USE_DEQUE_FOR_VECTOR_BOOL)
  +     typedef std::deque<bool>                        BoolVectorType;
  +#else
        typedef std::vector<bool>                       BoolVectorType;
  +#endif
   #endif
   
        XPathProcessorImpl();
  
  
  

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

Reply via email to