dbertoni    2004/11/14 23:51:46

  Modified:    c/src/xalanc/TestXSLT process.cpp
  Log:
  Use std::vector instead of XalanVector, since we cannot use the former until 
Xerces-C is initialized.
  
  Revision  Changes    Path
  1.14      +3 -2      xml-xalan/c/src/xalanc/TestXSLT/process.cpp
  
  Index: process.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/xalanc/TestXSLT/process.cpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- process.cpp       10 Nov 2004 20:27:42 -0000      1.13
  +++ process.cpp       15 Nov 2004 07:51:46 -0000      1.14
  @@ -143,6 +143,7 @@
   XALAN_USING_STD(endl)
   XALAN_USING_STD(hex)
   XALAN_USING_STD(pair)
  +XALAN_USING_STD(vector)
   
   
   
  @@ -242,7 +243,7 @@
   
   
   
  -typedef XalanVector<pair< const char*, const char*> >        
StringPairVectorType;
  +typedef vector<pair< const char*, const char*> >     StringPairVectorType;
   
   
   
  @@ -273,7 +274,7 @@
        const char*             inFileName;
   
        CmdLineParams() :
  -             params(XalanMemMgrs::getDefaultXercesMemMgr()),
  +             params(),
                setQuietConflictWarnings(false),
                setQuietMode(false),
                versionOnly(false),
  
  
  

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

Reply via email to