susantha    2003/08/04 22:48:37

  Modified:    c/src/engine HandlerPool.cpp
  Log:
  Some changes due to making BasicTypeSerializer non static
  
  Revision  Changes    Path
  1.5       +2 -2      xml-axis/c/src/engine/HandlerPool.cpp
  
  Index: HandlerPool.cpp
  ===================================================================
  RCS file: /home/cvs/xml-axis/c/src/engine/HandlerPool.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- HandlerPool.cpp   4 Aug 2003 06:36:43 -0000       1.4
  +++ HandlerPool.cpp   5 Aug 2003 05:48:37 -0000       1.5
  @@ -290,12 +290,12 @@
                        DEBUG1("AFTER BasicHandler *pBh = LoadHandler(*it);");
                        if (pBh)
                        {
  -                             DEBUG1("BEFORE pH = dynamic_cast<Handler*>(pBh);");
  +                             DEBUG1("BEFORE pH = static_cast<Handler*>(pBh);");
                                if (pBh->GetType() == NORMAL_HANDLER)
                                        pH = static_cast<Handler*>(pBh);
                                else
                                        pH = NULL;
  -                             DEBUG1("AFTER pH = dynamic_cast<Handler*>(pBh);");
  +                             DEBUG1("AFTER pH = static_cast<Handler*>(pBh);");
                                if (pH)
                                {          
                                        DEBUG1("if (pH)");
  
  
  

Reply via email to