mcatan      2004/04/23 23:55:03

  Modified:    include/log4cxx appender.h appenderskeleton.h
                        asyncappender.h basicconfigurator.h
                        consoleappender.h dailyrollingfileappender.h
                        defaultcategoryfactory.h fileappender.h hierarchy.h
                        htmllayout.h layout.h level.h logger.h logmanager.h
                        mdc.h ndc.h patternlayout.h propertyconfigurator.h
                        provisionnode.h rollingfileappender.h
                        simplelayout.h ttcclayout.h writerappender.h
               include/log4cxx/config propertysetter.h
               include/log4cxx/helpers absolutetimedateformat.h
                        appenderattachableimpl.h boundedfifo.h class.h
                        condition.h criticalsection.h cyclicbuffer.h
                        datagrampacket.h datagramsocket.h dateformat.h
                        datelayout.h datetimedateformat.h event.h
                        exception.h filewatchdog.h formattinginfo.h
                        gnomexml.h inetaddress.h iso8601dateformat.h
                        loader.h locale.h loglog.h msxml.h mutex.h object.h
                        objectimpl.h objectptr.h onlyonceerrorhandler.h
                        optionconverter.h patternconverter.h
                        patternparser.h properties.h
                        propertyresourcebundle.h relativetimedateformat.h
                        resourcebundle.h semaphore.h serversocket.h
                        socketimpl.h socketinputstream.h
                        socketoutputstream.h strictmath.h stringhelper.h
                        stringtokenizer.h syslogwriter.h tchar.h thread.h
                        threadspecificdata.h timezone.h transform.h xml.h
               include/log4cxx/net smtpappender.h socketappender.h
                        sockethubappender.h socketnode.h telnetappender.h
                        xmlsocketappender.h
               include/log4cxx/nt nteventlogappender.h
               include/log4cxx/spi appenderattachable.h configurator.h
                        defaultrepositoryselector.h errorhandler.h filter.h
                        hierarchyeventlistener.h loggerfactory.h
                        loggerrepository.h loggingevent.h optionhandler.h
                        repositoryselector.h rootcategory.h
                        triggeringeventevaluator.h
               include/log4cxx/varia denyallfilter.h fallbackerrorhandler.h
                        levelmatchfilter.h levelrangefilter.h
                        stringmatchfilter.h
               include/log4cxx/xml domconfigurator.h xmllayout.h
               tests/src vectorappender.h
               tests/src/customlogger xlogger.h
               tests/src/pattern num343patternconverter.h
               tests/src/util absolutedateandtimefilter.h
                        absolutetimefilter.h compare.h controlfilter.h
                        filter.h iso8601filter.h linenumberfilter.h
                        relativetimefilter.h threadfilter.h transformer.h
                        xmllineattributefilter.h xmlthreadfilter.h
                        xmltimestampfilter.h
               tests/src/xml xlevel.h
  Log:
  Removed semicolons after nested namespaces (fix for Solaris)
  
  Revision  Changes    Path
  1.10      +1 -1      logging-log4cxx/include/log4cxx/appender.h
  
  Index: appender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/appender.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- appender.h        22 Apr 2004 21:21:29 -0000      1.9
  +++ appender.h        24 Apr 2004 06:55:01 -0000      1.10
  @@ -139,6 +139,6 @@
          */    
          virtual bool requiresLayout() const = 0;
      };
  -};
  +} 
   
   #endif //_LOG4CXX_APPENDER_H
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/appenderskeleton.h
  
  Index: appenderskeleton.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/appenderskeleton.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- appenderskeleton.h        22 Apr 2004 21:21:29 -0000      1.10
  +++ appenderskeleton.h        24 Apr 2004 06:55:01 -0000      1.11
  @@ -184,6 +184,6 @@
                */
                void setThreshold(const LevelPtr& threshold);
        }; // class AppenderSkeleton
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif //_LOG4CXX_APPENDER_SKELETON_H
  
  
  
  1.12      +2 -2      logging-log4cxx/include/log4cxx/asyncappender.h
  
  Index: asyncappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/asyncappender.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- asyncappender.h   22 Apr 2004 21:21:29 -0000      1.11
  +++ asyncappender.h   24 Apr 2004 06:55:01 -0000      1.12
  @@ -27,7 +27,7 @@
        {
                class BoundedFIFO;
                typedef ObjectPtrT<BoundedFIFO> BoundedFIFOPtr;
  -     };
  +     } 
   
        class Dispatcher;
        typedef helpers::ObjectPtrT<Dispatcher> DispatcherPtr;
  @@ -171,7 +171,7 @@
                */
                void run();
        }; // class Dispatcher
  -}; //  namespace log4cxx
  +}  //  namespace log4cxx
   
   #endif//  _LOG4CXX_ASYNC_APPENDER_H
   
  
  
  
  1.5       +1 -1      logging-log4cxx/include/log4cxx/basicconfigurator.h
  
  Index: basicconfigurator.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/basicconfigurator.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- basicconfigurator.h       22 Apr 2004 21:21:29 -0000      1.4
  +++ basicconfigurator.h       24 Apr 2004 06:55:01 -0000      1.5
  @@ -60,6 +60,6 @@
                See Hierarchy#resetConfiguration() for more details.  */
                static void resetConfiguration();
        }; // class BasicConfigurator
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif //_LOG4CXX_BASIC_CONFIGURATOR_H
  
  
  
  1.9       +1 -1      logging-log4cxx/include/log4cxx/consoleappender.h
  
  Index: consoleappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/consoleappender.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- consoleappender.h 22 Apr 2004 21:21:29 -0000      1.8
  +++ consoleappender.h 24 Apr 2004 06:55:01 -0000      1.9
  @@ -82,7 +82,7 @@
        protected:
                String target;
        };
  -}; //namespace log4cxx
  +}  //namespace log4cxx
   
   #endif //_LOG4CXX_CONSOLE_APPENDER_H
   
  
  
  
  1.8       +2 -2      
logging-log4cxx/include/log4cxx/dailyrollingfileappender.h
  
  Index: dailyrollingfileappender.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/dailyrollingfileappender.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- dailyrollingfileappender.h        22 Apr 2004 21:21:29 -0000      1.7
  +++ dailyrollingfileappender.h        24 Apr 2004 06:55:01 -0000      1.8
  @@ -25,7 +25,7 @@
        namespace helpers
        {
                class DateFormat;
  -     };
  +     } 
   
        /**
        *  RollingCalendar is a helper class to DailyRollingFileAppender.
  @@ -270,6 +270,6 @@
                helpers::DateFormat * df;
                RollingCalendar rc;
        };
  -};
  +} 
   
   #endif //_LOG4CXX_DAILY_ROLLING_FILE_APPENDER_H
  
  
  
  1.8       +1 -1      logging-log4cxx/include/log4cxx/defaultcategoryfactory.h
  
  Index: defaultcategoryfactory.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/defaultcategoryfactory.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- defaultcategoryfactory.h  22 Apr 2004 21:21:29 -0000      1.7
  +++ defaultcategoryfactory.h  24 Apr 2004 06:55:01 -0000      1.8
  @@ -37,6 +37,6 @@
   
                virtual LoggerPtr makeNewLoggerInstance(const String& name);
        };      
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif //_LOG4CXX_DEFAULT_CATEGORY_FACTORY_H
  
  
  
  1.12      +1 -1      logging-log4cxx/include/log4cxx/fileappender.h
  
  Index: fileappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/fileappender.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- fileappender.h    22 Apr 2004 21:21:29 -0000      1.11
  +++ fileappender.h    24 Apr 2004 06:55:01 -0000      1.12
  @@ -217,6 +217,6 @@
           void setBufferSize(int bufferSize) { this->bufferSize = bufferSize; }
                        
        }; // class FileAppender
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/hierarchy.h
  
  Index: hierarchy.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/hierarchy.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- hierarchy.h       22 Apr 2004 21:21:29 -0000      1.10
  +++ hierarchy.h       24 Apr 2004 06:55:01 -0000      1.11
  @@ -285,6 +285,6 @@
   
                void updateChildren(ProvisionNode& pn, LoggerPtr& logger);
        };
  -}; //namespace log4cxx
  +}  //namespace log4cxx
   
   #endif //_LOG4CXX_HIERARCHY_H
  
  
  
  1.13      +1 -1      logging-log4cxx/include/log4cxx/htmllayout.h
  
  Index: htmllayout.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/htmllayout.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- htmllayout.h      22 Apr 2004 21:21:29 -0000      1.12
  +++ htmllayout.h      24 Apr 2004 06:55:01 -0000      1.13
  @@ -132,6 +132,6 @@
                        { return false; }
                        
        }; // class HtmlLayout
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif // _LOG4CXX_HTML_LAYOUT_H
  
  
  
  1.11      +2 -2      logging-log4cxx/include/log4cxx/layout.h
  
  Index: layout.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/layout.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- layout.h  22 Apr 2004 21:21:29 -0000      1.10
  +++ layout.h  24 Apr 2004 06:55:01 -0000      1.11
  @@ -30,7 +30,7 @@
       {
                class LoggingEvent;
           typedef helpers::ObjectPtrT<LoggingEvent> LoggingEventPtr;
  -    };
  +    } 
   
        /**
        Extend this abstract class to create your own log layout format.
  @@ -83,6 +83,6 @@
                */
                virtual bool ignoresThrowable() const = 0;
        };
  -};
  +} 
   
   #endif // _LOG4CXX_LAYOUT_H
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/level.h
  
  Index: level.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/level.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- level.h   22 Apr 2004 21:21:29 -0000      1.10
  +++ level.h   24 Apr 2004 06:55:01 -0000      1.11
  @@ -196,7 +196,7 @@
                String levelStr;
                int syslogEquivalent;
        };
  -};
  +} 
   
   #define DECLARE_LOG4CXX_LEVEL(level)\
   public:\
  
  
  
  1.20      +2 -2      logging-log4cxx/include/log4cxx/logger.h
  
  Index: logger.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/logger.h,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- logger.h  22 Apr 2004 21:21:29 -0000      1.19
  +++ logger.h  24 Apr 2004 06:55:01 -0000      1.20
  @@ -35,7 +35,7 @@
   
                class LoggerRepository;
                typedef helpers::ObjectPtrT<LoggerRepository> 
LoggerRepositoryPtr;
  -     };
  +     } 
        
       class Logger;
        /** smart pointer to a Logger class */
  @@ -536,7 +536,7 @@
                */
                void warn(const String& message, const char* file=NULL, int 
line=-1);
      };
  -};
  +} 
   
   /** @addtogroup LoggingMacros Logging macros
   @{
  
  
  
  1.11      +2 -2      logging-log4cxx/include/log4cxx/logmanager.h
  
  Index: logmanager.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/logmanager.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- logmanager.h      22 Apr 2004 21:21:29 -0000      1.10
  +++ logmanager.h      24 Apr 2004 06:55:01 -0000      1.11
  @@ -31,7 +31,7 @@
       {
                class LoggerFactory;
                typedef helpers::ObjectPtrT<LoggerFactory> LoggerFactoryPtr;
  -    };
  +    } 
       
       /**
       * Use the <code>LogManager</code> class to retreive Logger
  @@ -99,6 +99,6 @@
                */
           static void resetConfiguration();
       }; // class LogManager
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif //_LOG4CXX_LOG_MANAGER_H
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/mdc.h
  
  Index: mdc.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/mdc.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- mdc.h     22 Apr 2004 21:21:29 -0000      1.6
  +++ mdc.h     24 Apr 2004 06:55:01 -0000      1.7
  @@ -92,6 +92,6 @@
                
                static void setContext(Map& map);
        }; // class MDC;
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif // _LOG4CXX_MDC_H
  
  
  
  1.6       +1 -1      logging-log4cxx/include/log4cxx/ndc.h
  
  Index: ndc.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/ndc.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ndc.h     22 Apr 2004 21:21:29 -0000      1.5
  +++ ndc.h     24 Apr 2004 06:55:01 -0000      1.6
  @@ -211,6 +211,6 @@
                */
                static void remove();
        }; // class NDC;
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif // _LOG4CXX_NDC_H
  
  
  
  1.15      +2 -2      logging-log4cxx/include/log4cxx/patternlayout.h
  
  Index: patternlayout.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/patternlayout.h,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- patternlayout.h   22 Apr 2004 21:21:29 -0000      1.14
  +++ patternlayout.h   24 Apr 2004 06:55:01 -0000      1.15
  @@ -26,7 +26,7 @@
        {
                class PatternConverter;
                typedef ObjectPtrT<PatternConverter> PatternConverterPtr;
  -     };
  +     } 
   
        class PatternLayout;
        typedef helpers::ObjectPtrT<PatternLayout> PatternLayoutPtr;
  @@ -466,6 +466,6 @@
                */
                virtual helpers::PatternConverterPtr createPatternParser(const 
String& pattern);
        };
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif //_LOG4CXX_PATTERN_LAYOUT_H
  
  
  
  1.11      +3 -3      logging-log4cxx/include/log4cxx/propertyconfigurator.h
  
  Index: propertyconfigurator.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/propertyconfigurator.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- propertyconfigurator.h    22 Apr 2004 21:21:29 -0000      1.10
  +++ propertyconfigurator.h    24 Apr 2004 06:55:01 -0000      1.11
  @@ -39,12 +39,12 @@
   
                class LoggerRepository;
                typedef helpers::ObjectPtrT<LoggerRepository> 
LoggerRepositoryPtr;
  -     };
  +     } 
   
        namespace helpers
        {
                class Properties;
  -     };
  +     } 
   
   /**
   Allows the configuration of log4cxx from an external file.  See
  @@ -384,6 +384,6 @@
                void registryPut(const AppenderPtr& appender);
                AppenderPtr registryGet(const String& name);
        }; // class PropertyConfigurator
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif //_LOG4CXX_PROPERTY_CONFIGURATOR_H
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/provisionnode.h
  
  Index: provisionnode.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/provisionnode.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- provisionnode.h   22 Apr 2004 21:21:29 -0000      1.6
  +++ provisionnode.h   24 Apr 2004 06:55:01 -0000      1.7
  @@ -34,6 +34,6 @@
                        push_back(logger);
                }
       }; // class LogManager
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif //_LOG4CXX_PROVISION_NODE_H
  
  
  
  1.10      +1 -1      logging-log4cxx/include/log4cxx/rollingfileappender.h
  
  Index: rollingfileappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/rollingfileappender.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- rollingfileappender.h     22 Apr 2004 21:21:29 -0000      1.9
  +++ rollingfileappender.h     24 Apr 2004 06:55:01 -0000      1.10
  @@ -134,6 +134,6 @@
                */
                virtual void subAppend(const spi::LoggingEventPtr& event);
        }; // class RollingFileAppender
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif //_LOG4CXX_ROLLING_FILE_APPENDER_H
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/simplelayout.h
  
  Index: simplelayout.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/simplelayout.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- simplelayout.h    22 Apr 2004 21:21:29 -0000      1.10
  +++ simplelayout.h    24 Apr 2004 06:55:01 -0000      1.11
  @@ -67,6 +67,6 @@
                virtual void activateOptions() {}
                virtual void setOption(const String& option, const String& 
value) {}
        };
  -}; // namespace log4cxx
  +}  // namespace log4cxx
   
   #endif //_LOG4CXX_SIMPLE_LAYOUT_H
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/ttcclayout.h
  
  Index: ttcclayout.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/ttcclayout.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- ttcclayout.h      22 Apr 2004 21:21:29 -0000      1.10
  +++ ttcclayout.h      24 Apr 2004 06:55:01 -0000      1.11
  @@ -170,6 +170,6 @@
        */
        virtual bool ignoresThrowable() const { return true; }
        };
  -};
  +} 
   
   #endif
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/writerappender.h
  
  Index: writerappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/writerappender.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- writerappender.h  22 Apr 2004 21:21:29 -0000      1.10
  +++ writerappender.h  24 Apr 2004 06:55:01 -0000      1.11
  @@ -182,6 +182,6 @@
        protected:
                virtual void writeHeader();
        };
  -}; //namespace log4cxx
  +}  //namespace log4cxx
   
   #endif //_LOG4CXX_WRITER_APPENDER_H
  
  
  
  1.8       +2 -2      logging-log4cxx/include/log4cxx/config/propertysetter.h
  
  Index: propertysetter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/config/propertysetter.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- propertysetter.h  22 Apr 2004 21:21:30 -0000      1.7
  +++ propertysetter.h  24 Apr 2004 06:55:01 -0000      1.8
  @@ -28,7 +28,7 @@
                typedef ObjectPtrT<Object> ObjectPtr;
   
                class Properties;
  -     };
  +     } 
   
        namespace config
        {
  @@ -92,7 +92,7 @@
   
                        void activate();
                }; // class PropertySetter
  -     }; // namespace config;
  +     }  // namespace config;
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_CONFIG_PROPERTYSETTER_H
  
  
  
  1.7       +1 -1      
logging-log4cxx/include/log4cxx/helpers/absolutetimedateformat.h
  
  Index: absolutetimedateformat.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/absolutetimedateformat.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- absolutetimedateformat.h  22 Apr 2004 21:21:30 -0000      1.6
  +++ absolutetimedateformat.h  24 Apr 2004 06:55:01 -0000      1.7
  @@ -53,7 +53,7 @@
                        AbsoluteTimeDateFormat(const TimeZonePtr& timeZone)
                        : DateFormat(_T("%H:%M:%S,%Q"), timeZone) {}
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_ABSOLUTE_TIME_DATE_FORMAT_H
  
  
  
  1.10      +2 -2      
logging-log4cxx/include/log4cxx/helpers/appenderattachableimpl.h
  
  Index: appenderattachableimpl.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/appenderattachableimpl.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- appenderattachableimpl.h  22 Apr 2004 21:21:30 -0000      1.9
  +++ appenderattachableimpl.h  24 Apr 2004 06:55:01 -0000      1.10
  @@ -92,7 +92,7 @@
                */
               virtual void removeAppender(const String& name);
           };
  -    };
  -};
  +    } 
  +} 
   
   #endif //_LOG4CXX_HELPERS_APPENDER_ATTACHABLE_IMPL_H
  
  
  
  1.9       +1 -1      logging-log4cxx/include/log4cxx/helpers/boundedfifo.h
  
  Index: boundedfifo.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/boundedfifo.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- boundedfifo.h     22 Apr 2004 21:21:30 -0000      1.8
  +++ boundedfifo.h     24 Apr 2004 06:55:01 -0000      1.9
  @@ -105,7 +105,7 @@
                                { return (numElements+1 == maxSize); }
                                
                }; // class BoundedFIFO
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_BOUNDED_FIFO_H
  
  
  
  1.9       +1 -1      logging-log4cxx/include/log4cxx/helpers/class.h
  
  Index: class.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/class.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- class.h   22 Apr 2004 21:21:30 -0000      1.8
  +++ class.h   24 Apr 2004 06:55:01 -0000      1.9
  @@ -62,7 +62,7 @@
                        static void registerClass(const Class * newClass);
                        String name;
                };
  -     }; // namespace log4cxx
  +     }  // namespace log4cxx
   }; // namespace helper
   
   #endif //_LOG4CXX_HELPERS_CLASS_H
  
  
  
  1.5       +1 -1      logging-log4cxx/include/log4cxx/helpers/condition.h
  
  Index: condition.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/condition.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- condition.h       22 Apr 2004 21:21:30 -0000      1.4
  +++ condition.h       24 Apr 2004 06:55:01 -0000      1.5
  @@ -65,7 +65,7 @@
                        bool wasBroadCast;
   #endif
                };
  -     };// namespace helpers
  +     } // namespace helpers
   };// namespace log4cxx
   
   #endif //_LOG4CXX_HELPERS_CONDITION_H
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/helpers/criticalsection.h
  
  Index: criticalsection.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/criticalsection.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- criticalsection.h 22 Apr 2004 21:21:30 -0000      1.6
  +++ criticalsection.h 24 Apr 2004 06:55:01 -0000      1.7
  @@ -82,7 +82,7 @@
                        /// verify the CriticalSection state
                        bool locked;
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_HELPERS_CRITICAL_SECTION_H
  
  
  
  1.6       +1 -1      logging-log4cxx/include/log4cxx/helpers/cyclicbuffer.h
  
  Index: cyclicbuffer.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/cyclicbuffer.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- cyclicbuffer.h    22 Apr 2004 21:21:30 -0000      1.5
  +++ cyclicbuffer.h    24 Apr 2004 06:55:01 -0000      1.6
  @@ -85,7 +85,7 @@
                        */
                        void resize(int newSize);
                }; // class CyclicBuffer
  -     }; //namespace helpers
  +     }  //namespace helpers
   }; //namespace log4cxx
   
   #endif //_LOG4CXX_HELPERS_CYCLICBUFFER_H
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/helpers/datagrampacket.h
  
  Index: datagrampacket.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/datagrampacket.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- datagrampacket.h  22 Apr 2004 21:21:30 -0000      1.6
  +++ datagrampacket.h  24 Apr 2004 06:55:01 -0000      1.7
  @@ -123,7 +123,7 @@
                                { this->port = port; }
   
                }; // class DatagramSocketImpl
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_DATAGRAM_SOCKET_IMPL
  
  
  
  1.6       +1 -1      logging-log4cxx/include/log4cxx/helpers/datagramsocket.h
  
  Index: datagramsocket.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/datagramsocket.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- datagramsocket.h  22 Apr 2004 21:21:30 -0000      1.5
  +++ datagramsocket.h  24 Apr 2004 06:55:01 -0000      1.6
  @@ -115,7 +115,7 @@
                        int localPort;
   
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_HELPERS_DATAGRAM_SOCKET_H
  
  
  
  1.13      +1 -1      logging-log4cxx/include/log4cxx/helpers/dateformat.h
  
  Index: dateformat.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/dateformat.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- dateformat.h      22 Apr 2004 21:21:30 -0000      1.12
  +++ dateformat.h      24 Apr 2004 06:55:01 -0000      1.13
  @@ -40,7 +40,7 @@
                        TimeZonePtr timeZone;
                        String dateFormat;
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_HELPERS_DATE_FORMAT_H
  
  
  
  1.9       +1 -1      logging-log4cxx/include/log4cxx/helpers/datelayout.h
  
  Index: datelayout.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/datelayout.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- datelayout.h      22 Apr 2004 21:21:30 -0000      1.8
  +++ datelayout.h      24 Apr 2004 06:55:01 -0000      1.9
  @@ -113,7 +113,7 @@
                                const TimeZonePtr& timeZone);
   
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_DATE_LAYOUT_H
  
  
  
  1.7       +1 -1      
logging-log4cxx/include/log4cxx/helpers/datetimedateformat.h
  
  Index: datetimedateformat.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/datetimedateformat.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- datetimedateformat.h      22 Apr 2004 21:21:30 -0000      1.6
  +++ datetimedateformat.h      24 Apr 2004 06:55:01 -0000      1.7
  @@ -33,7 +33,7 @@
                        DateTimeDateFormat(const TimeZonePtr& timeZone)
                         : DateFormat(_T("%d %b %Y %H:%M:%S,%Q"), timeZone) {}
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_DATE_TIME_DATE_FORMAT_H
  
  
  
  1.3       +1 -1      logging-log4cxx/include/log4cxx/helpers/event.h
  
  Index: event.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/event.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- event.h   22 Apr 2004 21:21:30 -0000      1.2
  +++ event.h   24 Apr 2004 06:55:01 -0000      1.3
  @@ -95,7 +95,7 @@
                        void * event;
   #endif 
                }; // class Event
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cx
   
   #endif //_LOG4CXX_HELPERS_EVENT_H
  
  
  
  1.10      +1 -1      logging-log4cxx/include/log4cxx/helpers/exception.h
  
  Index: exception.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/exception.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- exception.h       22 Apr 2004 21:21:30 -0000      1.9
  +++ exception.h       24 Apr 2004 06:55:01 -0000      1.10
  @@ -76,7 +76,7 @@
                class LOG4CXX_EXPORT IOException : public Exception
                {
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_EXCEPTION_H
  
  
  
  1.6       +1 -1      logging-log4cxx/include/log4cxx/helpers/filewatchdog.h
  
  Index: filewatchdog.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/filewatchdog.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- filewatchdog.h    22 Apr 2004 21:21:30 -0000      1.5
  +++ filewatchdog.h    24 Apr 2004 06:55:01 -0000      1.6
  @@ -67,7 +67,7 @@
                        void run();
                        void start();
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   
  
  
  
  1.6       +1 -1      logging-log4cxx/include/log4cxx/helpers/formattinginfo.h
  
  Index: formattinginfo.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/formattinginfo.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- formattinginfo.h  22 Apr 2004 21:21:30 -0000      1.5
  +++ formattinginfo.h  24 Apr 2004 06:55:01 -0000      1.6
  @@ -40,7 +40,7 @@
                        void dump();
   
                }; // class FormattingInfo
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPER_FORMATTING_INFO_H
  
  
  
  1.5       +1 -1      logging-log4cxx/include/log4cxx/helpers/gnomexml.h
  
  Index: gnomexml.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/gnomexml.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- gnomexml.h        22 Apr 2004 21:21:30 -0000      1.4
  +++ gnomexml.h        24 Apr 2004 06:55:01 -0000      1.5
  @@ -125,7 +125,7 @@
                        xmlNodePtr currentChild;
                        int currentIndex;
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // HAVE_LIBXML2
  
  
  
  1.8       +1 -1      logging-log4cxx/include/log4cxx/helpers/inetaddress.h
  
  Index: inetaddress.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/inetaddress.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- inetaddress.h     22 Apr 2004 21:21:30 -0000      1.7
  +++ inetaddress.h     24 Apr 2004 06:55:01 -0000      1.8
  @@ -68,7 +68,7 @@
   
                        int address;
                }; // class InetAddress
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPER_INETADDRESS_H
  
  
  
  1.11      +1 -1      
logging-log4cxx/include/log4cxx/helpers/iso8601dateformat.h
  
  Index: iso8601dateformat.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/iso8601dateformat.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- iso8601dateformat.h       22 Apr 2004 21:21:30 -0000      1.10
  +++ iso8601dateformat.h       24 Apr 2004 06:55:01 -0000      1.11
  @@ -38,7 +38,7 @@
                        ISO8601DateFormat(const TimeZonePtr& timeZone)
                         : DateFormat(_T("%Y-%m-%d %H:%M:%S,%Q"), timeZone) {}
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_ISO_8601_DATE_FORMAT_H
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/helpers/loader.h
  
  Index: loader.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/loader.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- loader.h  22 Apr 2004 21:21:30 -0000      1.6
  +++ loader.h  24 Apr 2004 06:55:01 -0000      1.7
  @@ -34,6 +34,6 @@
                        static String getResource(const String& name);
                        static istream * getResourceAsStream(const String& 
name);
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   #endif //_LOG4CXX_HELPERS_LOADER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/include/log4cxx/helpers/locale.h
  
  Index: locale.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/locale.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- locale.h  22 Apr 2004 21:21:30 -0000      1.2
  +++ locale.h  24 Apr 2004 06:55:01 -0000      1.3
  @@ -43,7 +43,7 @@
                        String country;
                        String variant; 
                }; // class Locale
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_LOCALE_H
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/helpers/loglog.h
  
  Index: loglog.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/loglog.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- loglog.h  22 Apr 2004 21:21:30 -0000      1.6
  +++ loglog.h  24 Apr 2004 06:55:01 -0000      1.7
  @@ -96,7 +96,7 @@
                        static void warn(const String&  msg);
                        static void warn(const String&  msg, Exception& e);
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #define LOGLOG_DEBUG(log) { \
  
  
  
  1.8       +1 -1      logging-log4cxx/include/log4cxx/helpers/msxml.h
  
  Index: msxml.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/msxml.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- msxml.h   22 Apr 2004 21:21:30 -0000      1.7
  +++ msxml.h   24 Apr 2004 06:55:01 -0000      1.8
  @@ -124,7 +124,7 @@
                protected:
                        MSXML::IXMLDOMNodeListPtr nodeList;
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // HAVE_MS_XML
  
  
  
  1.5       +1 -1      logging-log4cxx/include/log4cxx/helpers/mutex.h
  
  Index: mutex.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/mutex.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- mutex.h   22 Apr 2004 21:21:30 -0000      1.4
  +++ mutex.h   24 Apr 2004 06:55:01 -0000      1.5
  @@ -50,7 +50,7 @@
                        void * mutex;
   #endif
                };
  -     };// namespace helpers
  +     } // namespace helpers
   };// namespace log4cxx
   
   #endif //_LOG4CXX_HELPERS_MUTEX_H
  
  
  
  1.11      +2 -2      logging-log4cxx/include/log4cxx/helpers/object.h
  
  Index: object.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/object.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- object.h  22 Apr 2004 21:21:30 -0000      1.10
  +++ object.h  24 Apr 2004 06:55:01 -0000      1.11
  @@ -108,8 +108,8 @@
                protected:
                        const Object * object;
                };
  -     };
  -};
  +     } 
  +} 
   
   #define BEGIN_LOG4CXX_CAST_MAP()\
   const void * cast(const helpers::Class& clazz) const\
  
  
  
  1.13      +2 -2      logging-log4cxx/include/log4cxx/helpers/objectimpl.h
  
  Index: objectimpl.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/objectimpl.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- objectimpl.h      22 Apr 2004 21:21:30 -0000      1.12
  +++ objectimpl.h      24 Apr 2004 06:55:01 -0000      1.13
  @@ -44,7 +44,7 @@
                        mutable CriticalSection cs;
                        mutable void * eventList;
                };
  -     };
  -};
  +     } 
  +} 
   
   #endif //_LOG4CXX_HELPERS_OBJECT_IMPL_H
  
  
  
  1.7       +2 -2      logging-log4cxx/include/log4cxx/helpers/objectptr.h
  
  Index: objectptr.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/objectptr.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- objectptr.h       22 Apr 2004 21:21:30 -0000      1.6
  +++ objectptr.h       24 Apr 2004 06:55:01 -0000      1.7
  @@ -180,7 +180,7 @@
           public:
               T * p;
           };
  -    };
  -};
  +    } 
  +} 
   
   #endif //_LOG4CXX_HELPERS_OBJECT_PTR_H
  
  
  
  1.11      +1 -1      
logging-log4cxx/include/log4cxx/helpers/onlyonceerrorhandler.h
  
  Index: onlyonceerrorhandler.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/onlyonceerrorhandler.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- onlyonceerrorhandler.h    22 Apr 2004 21:21:30 -0000      1.10
  +++ onlyonceerrorhandler.h    24 Apr 2004 06:55:01 -0000      1.11
  @@ -93,7 +93,7 @@
               */
               void setBackupAppender(const AppenderPtr& appender);
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_HELPERS_ONLY_ONCE_ERROR_HANDLER_H
  
  
  
  1.12      +2 -2      logging-log4cxx/include/log4cxx/helpers/optionconverter.h
  
  Index: optionconverter.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/optionconverter.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- optionconverter.h 22 Apr 2004 21:21:30 -0000      1.11
  +++ optionconverter.h 24 Apr 2004 06:55:01 -0000      1.12
  @@ -29,7 +29,7 @@
        {
                class LoggerRepository;
                typedef helpers::ObjectPtrT<LoggerRepository> 
LoggerRepositoryPtr;
  -     };
  +     } 
   
        namespace helpers
        {
  @@ -159,7 +159,7 @@
                        static void selectAndConfigure(const String& 
configFileName,
                                const String& clazz, spi::LoggerRepositoryPtr& 
hierarchy);
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_HELPER_OPTION_CONVERTER_H
  
  
  
  1.12      +2 -2      
logging-log4cxx/include/log4cxx/helpers/patternconverter.h
  
  Index: patternconverter.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/patternconverter.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- patternconverter.h        22 Apr 2004 21:21:30 -0000      1.11
  +++ patternconverter.h        24 Apr 2004 06:55:01 -0000      1.12
  @@ -27,7 +27,7 @@
        {
                class LoggingEvent;
                typedef helpers::ObjectPtrT<LoggingEvent> LoggingEventPtr;
  -     };
  +     } 
   
        namespace helpers
        {
  @@ -76,7 +76,7 @@
                        virtual void format(ostream& sbuf, const 
spi::LoggingEventPtr& e) const;
   
                }; // class PatternConverter
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPER_PATTERN_CONVERTER_H
  
  
  
  1.9       +2 -2      logging-log4cxx/include/log4cxx/helpers/patternparser.h
  
  Index: patternparser.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/patternparser.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- patternparser.h   22 Apr 2004 21:21:30 -0000      1.8
  +++ patternparser.h   24 Apr 2004 06:55:01 -0000      1.9
  @@ -29,7 +29,7 @@
        {
                class LoggingEvent;
                typedef helpers::ObjectPtrT<LoggingEvent> LoggingEventPtr;
  -     };
  +     } 
   
        namespace helpers
        {
  @@ -155,7 +155,7 @@
                                        const spi::LoggingEventPtr& event) 
const;
                        };
                }; // class PatternParser
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_HELPER_PATTERN_PARSER_H
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/helpers/properties.h
  
  Index: properties.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/properties.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- properties.h      22 Apr 2004 21:21:30 -0000      1.6
  +++ properties.h      24 Apr 2004 06:55:01 -0000      1.7
  @@ -146,7 +146,7 @@
                        */
                        std::vector<String> propertyNames() const;
                }; // class Properties
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_HELPER_PROPERTIES_H
  
  
  
  1.4       +1 -1      
logging-log4cxx/include/log4cxx/helpers/propertyresourcebundle.h
  
  Index: propertyresourcebundle.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/propertyresourcebundle.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- propertyresourcebundle.h  22 Apr 2004 21:21:30 -0000      1.3
  +++ propertyresourcebundle.h  24 Apr 2004 06:55:01 -0000      1.4
  @@ -54,7 +54,7 @@
                protected:
                        Properties properties;
                }; // class PropertyResourceBundle
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_PROPERTY_RESOURCE_BUNDLE_H
  
  
  
  1.10      +1 -1      
logging-log4cxx/include/log4cxx/helpers/relativetimedateformat.h
  
  Index: relativetimedateformat.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/relativetimedateformat.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- relativetimedateformat.h  22 Apr 2004 21:21:30 -0000      1.9
  +++ relativetimedateformat.h  24 Apr 2004 06:55:01 -0000      1.10
  @@ -45,7 +45,7 @@
                                os << (time - startTime);
                        }
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_RELATIVE_TIME_DATE_FORMAT_H
  
  
  
  1.4       +1 -1      logging-log4cxx/include/log4cxx/helpers/resourcebundle.h
  
  Index: resourcebundle.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/resourcebundle.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- resourcebundle.h  22 Apr 2004 21:21:30 -0000      1.3
  +++ resourcebundle.h  24 Apr 2004 06:55:01 -0000      1.4
  @@ -85,7 +85,7 @@
                        */
                        ResourceBundlePtr parent;
                }; // class ResourceBundle
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif
  
  
  
  1.9       +1 -1      logging-log4cxx/include/log4cxx/helpers/semaphore.h
  
  Index: semaphore.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/semaphore.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- semaphore.h       22 Apr 2004 21:21:30 -0000      1.8
  +++ semaphore.h       24 Apr 2004 06:55:01 -0000      1.9
  @@ -55,7 +55,7 @@
                        void * semaphore;
   #endif
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_HELPERS_SEMAPHORE_H
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/helpers/serversocket.h
  
  Index: serversocket.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/serversocket.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- serversocket.h    22 Apr 2004 21:21:30 -0000      1.6
  +++ serversocket.h    24 Apr 2004 06:55:01 -0000      1.7
  @@ -81,7 +81,7 @@
                protected:
                        SocketImplPtr socketImpl;
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_HELPERS_SERVER_SOCKET_H
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/helpers/socketimpl.h
  
  Index: socketimpl.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/socketimpl.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- socketimpl.h      22 Apr 2004 21:21:30 -0000      1.10
  +++ socketimpl.h      24 Apr 2004 06:55:01 -0000      1.11
  @@ -175,7 +175,7 @@
                        */
                        void setSoTimeout(int timeout);
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_SOCKET_IMPL
  
  
  
  1.10      +1 -1      
logging-log4cxx/include/log4cxx/helpers/socketinputstream.h
  
  Index: socketinputstream.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/socketinputstream.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- socketinputstream.h       22 Apr 2004 21:21:30 -0000      1.9
  +++ socketinputstream.h       24 Apr 2004 06:55:01 -0000      1.10
  @@ -70,7 +70,7 @@
                        size_t currentPos;
                        size_t maxPos;
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_SOCKET_OUTPUT_STREAM_H
  
  
  
  1.8       +1 -1      
logging-log4cxx/include/log4cxx/helpers/socketoutputstream.h
  
  Index: socketoutputstream.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/socketoutputstream.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- socketoutputstream.h      22 Apr 2004 21:21:30 -0000      1.7
  +++ socketoutputstream.h      24 Apr 2004 06:55:01 -0000      1.8
  @@ -73,7 +73,7 @@
   
                        unsigned char * beg, * cur, * end;
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_SOCKET_OUTPUT_STREAM_H
  
  
  
  1.4       +1 -1      logging-log4cxx/include/log4cxx/helpers/strictmath.h
  
  Index: strictmath.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/strictmath.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- strictmath.h      22 Apr 2004 21:21:30 -0000      1.3
  +++ strictmath.h      24 Apr 2004 06:55:01 -0000      1.4
  @@ -42,7 +42,7 @@
                                return (a > b) ? a : b;
                        }
                }; // class StrictMath
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cx
   
   #endif //_LOG4CXX_HELPERS_STRICTMATH_H
  
  
  
  1.9       +2 -2      logging-log4cxx/include/log4cxx/helpers/stringhelper.h
  
  Index: stringhelper.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/stringhelper.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- stringhelper.h    22 Apr 2004 21:21:30 -0000      1.8
  +++ stringhelper.h    24 Apr 2004 06:55:01 -0000      1.9
  @@ -51,7 +51,7 @@
                        */
                        static String format(const String& pattern, va_list 
argList);
           };
  -    };
  -};
  +    } 
  +} 
   
   #endif //_LOG4CXX_HELPERS_STRING_HELPER_H
  
  
  
  1.6       +1 -1      logging-log4cxx/include/log4cxx/helpers/stringtokenizer.h
  
  Index: stringtokenizer.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/stringtokenizer.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- stringtokenizer.h 22 Apr 2004 21:21:31 -0000      1.5
  +++ stringtokenizer.h 24 Apr 2004 06:55:01 -0000      1.6
  @@ -42,7 +42,7 @@
                        TCHAR * token;
                        TCHAR * state;
                }; // class StringTokenizer
  -     }; // namespace helpers;
  +     }  // namespace helpers;
   }; // namespace log4cxx;
   
   #endif //_LOG4CXX_HELPERS_STRING_TOKENIZER_H
  
  
  
  1.5       +1 -1      logging-log4cxx/include/log4cxx/helpers/syslogwriter.h
  
  Index: syslogwriter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/syslogwriter.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- syslogwriter.h    22 Apr 2004 21:21:31 -0000      1.4
  +++ syslogwriter.h    24 Apr 2004 06:55:01 -0000      1.5
  @@ -39,5 +39,5 @@
                        InetAddress address;
                        DatagramSocketPtr ds;
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
  
  
  
  1.28      +1 -1      logging-log4cxx/include/log4cxx/helpers/tchar.h
  
  Index: tchar.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/tchar.h,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- tchar.h   22 Apr 2004 21:21:31 -0000      1.27
  +++ tchar.h   24 Apr 2004 06:55:01 -0000      1.28
  @@ -322,6 +322,6 @@
        typedef std::basic_string<TCHAR> String;
        typedef std::basic_ostream<TCHAR> ostream;
        typedef std::basic_istream<TCHAR> istream;
  -};
  +} 
   
   #endif //_LOG4CXX_HELPERS_TCHAR_H
  
  
  
  1.12      +1 -1      logging-log4cxx/include/log4cxx/helpers/thread.h
  
  Index: thread.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/thread.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- thread.h  22 Apr 2004 21:21:31 -0000      1.11
  +++ thread.h  24 Apr 2004 06:55:01 -0000      1.12
  @@ -142,7 +142,7 @@
                
                typedef ObjectPtrT<Thread> ThreadPtr;
        
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; //namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_THREAD_H
  
  
  
  1.7       +1 -1      
logging-log4cxx/include/log4cxx/helpers/threadspecificdata.h
  
  Index: threadspecificdata.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/helpers/threadspecificdata.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- threadspecificdata.h      22 Apr 2004 21:21:31 -0000      1.6
  +++ threadspecificdata.h      24 Apr 2004 06:55:01 -0000      1.7
  @@ -42,7 +42,7 @@
                        void * key;
   #endif
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif
  
  
  
  1.3       +2 -2      logging-log4cxx/include/log4cxx/helpers/timezone.h
  
  Index: timezone.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/timezone.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- timezone.h        22 Apr 2004 21:21:31 -0000      1.2
  +++ timezone.h        24 Apr 2004 06:55:01 -0000      1.3
  @@ -114,7 +114,7 @@
                        
                        static TimeZonePtr defaultTimeZone;
                };
  -     };
  -};
  +     } 
  +} 
   
   #endif //_LOG4CXX_HELPERS_TIMEZONE_H
  
  
  
  1.6       +1 -1      logging-log4cxx/include/log4cxx/helpers/transform.h
  
  Index: transform.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/transform.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- transform.h       22 Apr 2004 21:21:31 -0000      1.5
  +++ transform.h       24 Apr 2004 06:55:01 -0000      1.6
  @@ -62,7 +62,7 @@
                        static void appendEscapingCDATA(
                                ostream& buf, const String& input);
                }; // class Transform
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; //namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_TRANSFORM_H
  
  
  
  1.5       +1 -1      logging-log4cxx/include/log4cxx/helpers/xml.h
  
  Index: xml.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/helpers/xml.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- xml.h     22 Apr 2004 21:21:31 -0000      1.4
  +++ xml.h     24 Apr 2004 06:55:01 -0000      1.5
  @@ -82,7 +82,7 @@
                        virtual int getLength() = 0;
                        virtual XMLDOMNodePtr item(int index) = 0;
                };
  -     }; // namespace helpers
  +     }  // namespace helpers
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_HELPERS_XML_H
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/net/smtpappender.h
  
  Index: smtpappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/net/smtpappender.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- smtpappender.h    22 Apr 2004 21:21:32 -0000      1.10
  +++ smtpappender.h    24 Apr 2004 06:55:02 -0000      1.11
  @@ -267,7 +267,7 @@
                        */
                        virtual bool isTriggeringEvent(const 
spi::LoggingEventPtr& event);
                }; // class DefaultEvaluator
  -     }; // namespace net
  +     }  // namespace net
   }; // namespace log4cxx
   
   //#endif // HAVE_SMTP
  
  
  
  1.13      +1 -1      logging-log4cxx/include/log4cxx/net/socketappender.h
  
  Index: socketappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/net/socketappender.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- socketappender.h  22 Apr 2004 21:21:32 -0000      1.12
  +++ socketappender.h  24 Apr 2004 06:55:02 -0000      1.13
  @@ -27,7 +27,7 @@
        {
                class SocketOutputStream;
                typedef helpers::ObjectPtrT<SocketOutputStream> 
SocketOutputStreamPtr;
  -     };
  +     } 
   
        namespace net
        {
  
  
  
  1.11      +2 -2      logging-log4cxx/include/log4cxx/net/sockethubappender.h
  
  Index: sockethubappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/net/sockethubappender.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- sockethubappender.h       22 Apr 2004 21:21:32 -0000      1.10
  +++ sockethubappender.h       24 Apr 2004 06:55:02 -0000      1.11
  @@ -29,7 +29,7 @@
        {
                class SocketOutputStream;
                typedef helpers::ObjectPtrT<SocketOutputStream> 
SocketOutputStreamPtr;
  -     };
  +     } 
   
        namespace net
        {
  @@ -223,7 +223,7 @@
                        typedef helpers::ObjectPtrT<ServerMonitor> 
ServerMonitorPtr;
                        ServerMonitorPtr serverMonitor;
                }; // class SocketHubAppender
  -     }; // namespace net
  +     }  // namespace net
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_NET_SOCKET_HUB_APPENDER_H
  
  
  
  1.9       +3 -3      logging-log4cxx/include/log4cxx/net/socketnode.h
  
  Index: socketnode.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/net/socketnode.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- socketnode.h      22 Apr 2004 21:21:32 -0000      1.8
  +++ socketnode.h      24 Apr 2004 06:55:02 -0000      1.9
  @@ -30,13 +30,13 @@
   
                class SocketInputStream;
                typedef ObjectPtrT<SocketInputStream> SocketInputStreamPtr;
  -     };
  +     } 
        
        namespace spi
        {
                class LoggerRepository;
                typedef helpers::ObjectPtrT<LoggerRepository> 
LoggerRepositoryPtr;
  -     };
  +     } 
   
        namespace net
        {
  @@ -70,7 +70,7 @@
                                spi::LoggerRepositoryPtr& hierarchy);
                        virtual void run();
                };
  -     }; // namespace net
  +     }  // namespace net
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_NET_SOCKET_NODE_H
  
  
  
  1.12      +1 -1      logging-log4cxx/include/log4cxx/net/telnetappender.h
  
  Index: telnetappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/net/telnetappender.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- telnetappender.h  22 Apr 2004 21:21:32 -0000      1.11
  +++ telnetappender.h  24 Apr 2004 06:55:02 -0000      1.12
  @@ -29,7 +29,7 @@
        {
                class SocketOutputStream;
                typedef helpers::ObjectPtrT<SocketOutputStream> 
SocketOutputStreamPtr;
  -     };
  +     } 
        
        namespace net
        {
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/net/xmlsocketappender.h
  
  Index: xmlsocketappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/net/xmlsocketappender.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- xmlsocketappender.h       22 Apr 2004 21:21:32 -0000      1.10
  +++ xmlsocketappender.h       24 Apr 2004 06:55:02 -0000      1.11
  @@ -27,7 +27,7 @@
        {
                class SocketOutputStream;
                typedef helpers::ObjectPtrT<SocketOutputStream> 
SocketOutputStreamPtr;
  -     };
  +     } 
   
        namespace net
        {
  
  
  
  1.10      +1 -1      logging-log4cxx/include/log4cxx/nt/nteventlogappender.h
  
  Index: nteventlogappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/nt/nteventlogappender.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- nteventlogappender.h      22 Apr 2004 21:21:32 -0000      1.9
  +++ nteventlogappender.h      24 Apr 2004 06:55:02 -0000      1.10
  @@ -95,7 +95,7 @@
                        HANDLE hEventLog;
                        SID * pCurrentUserSID;
                }; // class NTEventLogAppender
  -    }; // namespace nt
  +    }  // namespace nt
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_NT_EVENT_LOG_APPENDER_HEADER_
  
  
  
  1.9       +2 -2      logging-log4cxx/include/log4cxx/spi/appenderattachable.h
  
  Index: appenderattachable.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/spi/appenderattachable.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- appenderattachable.h      22 Apr 2004 21:21:32 -0000      1.8
  +++ appenderattachable.h      24 Apr 2004 06:55:02 -0000      1.9
  @@ -83,7 +83,7 @@
             // Dtor
               virtual ~AppenderAttachable(){}
           };
  -    };
  -};
  +    } 
  +} 
   
   #endif //_LOG4CXX_SPI_APPENDER_ATTACHABLE_H_
  
  
  
  1.7       +2 -2      logging-log4cxx/include/log4cxx/spi/configurator.h
  
  Index: configurator.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/spi/configurator.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- configurator.h    22 Apr 2004 21:21:32 -0000      1.6
  +++ configurator.h    24 Apr 2004 06:55:02 -0000      1.7
  @@ -62,7 +62,7 @@
                        virtual void doConfigure(const String& configFileName, 
                                spi::LoggerRepositoryPtr& repository) = 0;
                };
  -     };
  -};
  +     } 
  +} 
   
   #endif // _LOG4CXX_SPI_CONFIGURATOR_H
  
  
  
  1.9       +1 -1      
logging-log4cxx/include/log4cxx/spi/defaultrepositoryselector.h
  
  Index: defaultrepositoryselector.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/spi/defaultrepositoryselector.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- defaultrepositoryselector.h       22 Apr 2004 21:21:32 -0000      1.8
  +++ defaultrepositoryselector.h       24 Apr 2004 06:55:02 -0000      1.9
  @@ -48,7 +48,7 @@
                private:
                        LoggerRepositoryPtr repository;
                };
  -     }; // namespace spi
  +     }  // namespace spi
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_SPI_DEFAULT_REPOSITORY_SELECTOR_H
  
  
  
  1.12      +1 -1      logging-log4cxx/include/log4cxx/spi/errorhandler.h
  
  Index: errorhandler.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/spi/errorhandler.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- errorhandler.h    22 Apr 2004 21:21:32 -0000      1.11
  +++ errorhandler.h    24 Apr 2004 06:55:02 -0000      1.12
  @@ -119,7 +119,7 @@
                        */
                        virtual void setBackupAppender(const AppenderPtr& 
appender) = 0;
                };
  -     }; //namespace spi
  +     }  //namespace spi
   }; //namespace log4cxx
   
   #endif //_LOG4CXX_SPI_ERROR_HANDLER_H
  
  
  
  1.11      +2 -2      logging-log4cxx/include/log4cxx/spi/filter.h
  
  Index: filter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/spi/filter.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- filter.h  22 Apr 2004 21:21:32 -0000      1.10
  +++ filter.h  24 Apr 2004 06:55:02 -0000      1.11
  @@ -119,7 +119,7 @@
               @return The decision of the filter.  */
               virtual FilterDecision decide(const LoggingEventPtr& event) 
const = 0;
                };
  -     };
  -};
  +     } 
  +} 
   
   #endif //_LOG4CXX_SPI_FILTER_H
  
  
  
  1.9       +1 -1      
logging-log4cxx/include/log4cxx/spi/hierarchyeventlistener.h
  
  Index: hierarchyeventlistener.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/spi/hierarchyeventlistener.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- hierarchyeventlistener.h  22 Apr 2004 21:21:32 -0000      1.8
  +++ hierarchyeventlistener.h  24 Apr 2004 06:55:03 -0000      1.9
  @@ -48,7 +48,7 @@
                        virtual void removeAppenderEvent(const LoggerPtr& 
logger,
                                const AppenderPtr& appender) = 0;
                };
  -     }; // namespace spi
  +     }  // namespace spi
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_SPI_HIERARCHY_EVENT_LISTENER_H
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/spi/loggerfactory.h
  
  Index: loggerfactory.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/spi/loggerfactory.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- loggerfactory.h   22 Apr 2004 21:21:32 -0000      1.6
  +++ loggerfactory.h   24 Apr 2004 06:55:03 -0000      1.7
  @@ -42,7 +42,7 @@
   
                typedef helpers::ObjectPtrT<LoggerFactory> LoggerFactoryPtr;
   
  -     }; // namespace spi
  +     }  // namespace spi
   }; // namesapce log4cxx
   
   #endif //_LOG4CXX_SPI_LOGGERFACTORY_H
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/spi/loggerrepository.h
  
  Index: loggerrepository.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/spi/loggerrepository.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- loggerrepository.h        22 Apr 2004 21:21:32 -0000      1.10
  +++ loggerrepository.h        24 Apr 2004 06:55:03 -0000      1.11
  @@ -113,7 +113,7 @@
                                
               virtual void resetConfiguration() = 0;
           }; // class LoggerRepository
  -     }; // namespace spi
  +     }  // namespace spi
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_SPI_LOG_REPOSITORY_H
  
  
  
  1.15      +3 -3      logging-log4cxx/include/log4cxx/spi/loggingevent.h
  
  Index: loggingevent.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/spi/loggingevent.h,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- loggingevent.h    22 Apr 2004 21:21:33 -0000      1.14
  +++ loggingevent.h    24 Apr 2004 06:55:03 -0000      1.15
  @@ -38,7 +38,7 @@
                
                class SocketInputStream;
                typedef helpers::ObjectPtrT<SocketInputStream> 
SocketInputStreamPtr;
  -     };
  +     } 
        
        namespace spi
        {
  @@ -258,7 +258,7 @@
   
                        static int64_t startTime;
                };
  -     };
  -};
  +     } 
  +} 
   
   #endif //_LOG4CXX_SPI_LOGGING_EVENT_H
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/spi/optionhandler.h
  
  Index: optionhandler.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/spi/optionhandler.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- optionhandler.h   22 Apr 2004 21:21:33 -0000      1.6
  +++ optionhandler.h   24 Apr 2004 06:55:03 -0000      1.7
  @@ -63,7 +63,7 @@
                        virtual void setOption(const String& option, const 
String& value) = 0;
                
                }; // class OptionConverter
  -     }; // namespace spi
  +     }  // namespace spi
   }; // namespace log4cxx
   
   
  
  
  
  1.7       +1 -1      logging-log4cxx/include/log4cxx/spi/repositoryselector.h
  
  Index: repositoryselector.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/spi/repositoryselector.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- repositoryselector.h      22 Apr 2004 21:21:33 -0000      1.6
  +++ repositoryselector.h      24 Apr 2004 06:55:03 -0000      1.7
  @@ -49,7 +49,7 @@
                        virtual ~RepositorySelector() {}
                        virtual LoggerRepositoryPtr& getLoggerRepository() = 0;
                };
  -     }; //namespace spi
  +     }  //namespace spi
   }; //namespace log4cxx
   
   #endif //_LOG4CXX_SPI_REPOSITORY_SELECTOR_H
  
  
  
  1.8       +1 -1      logging-log4cxx/include/log4cxx/spi/rootcategory.h
  
  Index: rootcategory.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/spi/rootcategory.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- rootcategory.h    22 Apr 2004 21:21:33 -0000      1.7
  +++ rootcategory.h    24 Apr 2004 06:55:03 -0000      1.8
  @@ -53,7 +53,7 @@
                        */
               void setLevel(const LevelPtr& level);
                };
  -     }; // namespace spi
  +     }  // namespace spi
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_SPI_ROOT_CATEGORY_H
  
  
  
  1.9       +2 -2      
logging-log4cxx/include/log4cxx/spi/triggeringeventevaluator.h
  
  Index: triggeringeventevaluator.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/spi/triggeringeventevaluator.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- triggeringeventevaluator.h        22 Apr 2004 21:21:33 -0000      1.8
  +++ triggeringeventevaluator.h        24 Apr 2004 06:55:03 -0000      1.9
  @@ -50,7 +50,7 @@
                        */
                        virtual bool isTriggeringEvent(const 
spi::LoggingEventPtr& event) = 0;
                };
  -     };
  -};
  +     } 
  +} 
   
   #endif // _LOG4CXX_SPI_TRIGGERING_EVENT_EVALUATOR_H
  
  
  
  1.10      +1 -1      logging-log4cxx/include/log4cxx/varia/denyallfilter.h
  
  Index: denyallfilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/varia/denyallfilter.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- denyallfilter.h   22 Apr 2004 21:21:33 -0000      1.9
  +++ denyallfilter.h   24 Apr 2004 06:55:03 -0000      1.10
  @@ -52,7 +52,7 @@
                        FilterDecision decide(const spi::LoggingEventPtr& 
event) const
                                { return spi::Filter::DENY; }
                }; // class DenyAllFilter
  -     }; // namespace varia
  +     }  // namespace varia
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_VARIA_DENY_ALL_FILTER_H
  
  
  
  1.4       +1 -1      
logging-log4cxx/include/log4cxx/varia/fallbackerrorhandler.h
  
  Index: fallbackerrorhandler.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/varia/fallbackerrorhandler.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- fallbackerrorhandler.h    22 Apr 2004 21:21:33 -0000      1.3
  +++ fallbackerrorhandler.h    24 Apr 2004 06:55:03 -0000      1.4
  @@ -105,7 +105,7 @@
                        */
                        void setBackupAppender(const AppenderPtr& backup);
                };
  -     }; // namespace varia
  +     }  // namespace varia
   }; // namespace log4cxx
   
   #endif //_LOG4CXX_VARIA_FALLBACK_ERROR_HANDLER_H
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/varia/levelmatchfilter.h
  
  Index: levelmatchfilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/varia/levelmatchfilter.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- levelmatchfilter.h        22 Apr 2004 21:21:33 -0000      1.10
  +++ levelmatchfilter.h        24 Apr 2004 06:55:03 -0000      1.11
  @@ -89,7 +89,7 @@
                        */
                        FilterDecision decide(const spi::LoggingEventPtr& 
event) const;
                }; // class LevelMatchFilter
  -     }; // namespace varia
  +     }  // namespace varia
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_VARIA_STRING_MATCH_FILTER_H
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/varia/levelrangefilter.h
  
  Index: levelrangefilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/varia/levelrangefilter.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- levelrangefilter.h        22 Apr 2004 21:21:33 -0000      1.10
  +++ levelrangefilter.h        24 Apr 2004 06:55:03 -0000      1.11
  @@ -135,7 +135,7 @@
                        */
                        FilterDecision decide(const spi::LoggingEventPtr& 
event) const;
                }; // class LevelMatchFilter
  -     }; // namespace varia
  +     }  // namespace varia
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_VARIA_LEVEL_RANGE_FILTER_H
  
  
  
  1.11      +1 -1      logging-log4cxx/include/log4cxx/varia/stringmatchfilter.h
  
  Index: stringmatchfilter.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/include/log4cxx/varia/stringmatchfilter.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- stringmatchfilter.h       22 Apr 2004 21:21:33 -0000      1.10
  +++ stringmatchfilter.h       24 Apr 2004 06:55:03 -0000      1.11
  @@ -90,7 +90,7 @@
                        */
                        FilterDecision decide(const spi::LoggingEventPtr& 
event) const;
   }; // class StringMatchFilter
  -     }; // namespace varia
  +     }  // namespace varia
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_VARIA_STRING_MATCH_FILTER_H
  
  
  
  1.13      +4 -4      logging-log4cxx/include/log4cxx/xml/domconfigurator.h
  
  Index: domconfigurator.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/xml/domconfigurator.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- domconfigurator.h 22 Apr 2004 21:21:33 -0000      1.12
  +++ domconfigurator.h 24 Apr 2004 06:55:03 -0000      1.13
  @@ -43,7 +43,7 @@
   
                class OptionHandler;
                typedef helpers::ObjectPtrT<OptionHandler> OptionHandlerPtr;
  -     };
  +     } 
   
        namespace helpers
        {
  @@ -52,12 +52,12 @@
   
                class XMLDOMElement;
                typedef helpers::ObjectPtrT<XMLDOMElement> XMLDOMElementPtr;
  -     };
  +     } 
   
        namespace config
        {
                class PropertySetter;
  -     };
  +     } 
   
        namespace xml
        {
  @@ -214,7 +214,7 @@
                        spi::LoggerRepositoryPtr repository;
                        spi::LoggerFactoryPtr loggerFactory;
                };
  -     }; // namespace xml
  +     }  // namespace xml
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_XML_DOM_CONFIGURATOR_H
  
  
  
  1.12      +1 -1      logging-log4cxx/include/log4cxx/xml/xmllayout.h
  
  Index: xmllayout.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/include/log4cxx/xml/xmllayout.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- xmllayout.h       22 Apr 2004 21:21:33 -0000      1.11
  +++ xmllayout.h       24 Apr 2004 06:55:03 -0000      1.12
  @@ -117,7 +117,7 @@
                                { return false; }
                                
                };  // class XMLLayout
  -     }; // namespace xml
  +     }  // namespace xml
   }; // namespace log4cxx
   
   #endif // _LOG4CXX_XML_LAYOUT_H
  
  
  
  1.4       +1 -1      logging-log4cxx/tests/src/vectorappender.h
  
  Index: vectorappender.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/vectorappender.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- vectorappender.h  22 Apr 2004 21:21:36 -0000      1.3
  +++ vectorappender.h  24 Apr 2004 06:55:03 -0000      1.4
  @@ -56,4 +56,4 @@
                bool requiresLayout() const
                        { return false; }
        };
  -};
  +} 
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/customlogger/xlogger.h
  
  Index: xlogger.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/customlogger/xlogger.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- xlogger.h 22 Apr 2004 21:21:36 -0000      1.2
  +++ xlogger.h 24 Apr 2004 06:55:03 -0000      1.3
  @@ -111,7 +111,7 @@
        };
   
        typedef helpers::ObjectPtrT<XLogger> XLoggerPtr;
  -};
  +} 
   
   #define LOG4CXX_TRACE(logger, message) { \
        if (logger->isEnabledFor(log4cxx::XLevel::TRACE)) {\
  
  
  
  1.3       +1 -1      
logging-log4cxx/tests/src/pattern/num343patternconverter.h
  
  Index: num343patternconverter.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/tests/src/pattern/num343patternconverter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- num343patternconverter.h  22 Apr 2004 21:21:37 -0000      1.2
  +++ num343patternconverter.h  24 Apr 2004 06:55:03 -0000      1.3
  @@ -23,4 +23,4 @@
        public:
                void convert(ostream& sbuf, const spi::LoggingEventPtr& event);
        };
  -};
  +} 
  
  
  
  1.3       +1 -1      
logging-log4cxx/tests/src/util/absolutedateandtimefilter.h
  
  Index: absolutedateandtimefilter.h
  ===================================================================
  RCS file: 
/home/cvs/logging-log4cxx/tests/src/util/absolutedateandtimefilter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- absolutedateandtimefilter.h       22 Apr 2004 21:21:37 -0000      1.2
  +++ absolutedateandtimefilter.h       24 Apr 2004 06:55:03 -0000      1.3
  @@ -26,7 +26,7 @@
        public:
                String filter(const String& in) const 
throw(UnexpectedFormatException);
        };
  -};
  +} 
   
   
   #endif //_LOG4CXX_TESTS_UTIL_ABS_DATE_TIME_FILTER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/util/absolutetimefilter.h
  
  Index: absolutetimefilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/absolutetimefilter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- absolutetimefilter.h      22 Apr 2004 21:21:37 -0000      1.2
  +++ absolutetimefilter.h      24 Apr 2004 06:55:03 -0000      1.3
  @@ -26,7 +26,7 @@
        public:
                String filter(const String& in) const 
throw(UnexpectedFormatException);
        };
  -};
  +} 
   
   
   #endif //_LOG4CXX_TESTS_UTIL_ABS_TIME_FILTER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/util/compare.h
  
  Index: compare.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/compare.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- compare.h 22 Apr 2004 21:21:37 -0000      1.2
  +++ compare.h 24 Apr 2004 06:55:03 -0000      1.3
  @@ -27,4 +27,4 @@
                /// Prints file on the console.
                static void outputFile(const String& file);
        };
  -};
  +} 
  
  
  
  1.4       +1 -1      logging-log4cxx/tests/src/util/controlfilter.h
  
  Index: controlfilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/controlfilter.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- controlfilter.h   22 Apr 2004 21:21:37 -0000      1.3
  +++ controlfilter.h   24 Apr 2004 06:55:03 -0000      1.4
  @@ -32,7 +32,7 @@
        protected:
                std::vector<String> allowedPatterns;
        };
  -};
  +} 
   
   
   #endif //_LOG4CXX_TESTS_UTIL_CONTROL_FILTER_H
  
  
  
  1.4       +1 -1      logging-log4cxx/tests/src/util/filter.h
  
  Index: filter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/filter.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- filter.h  22 Apr 2004 21:21:37 -0000      1.3
  +++ filter.h  24 Apr 2004 06:55:03 -0000      1.4
  @@ -51,6 +51,6 @@
                static String merge(const String& pattern, const String& in, 
const String& fmt);
                static bool match(const String& pattern, const String& in);
        };
  -};
  +} 
   
   #endif //_LOG4CXX_TESTS_UTIL_FILTER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/util/iso8601filter.h
  
  Index: iso8601filter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/iso8601filter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- iso8601filter.h   22 Apr 2004 21:21:37 -0000      1.2
  +++ iso8601filter.h   24 Apr 2004 06:55:03 -0000      1.3
  @@ -26,7 +26,7 @@
        public:
                String filter(const String& in) const 
throw(UnexpectedFormatException);
        };
  -};
  +} 
   
   
   #endif //_LOG4CXX_TESTS_UTIL_ISO_8601_FILTER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/util/linenumberfilter.h
  
  Index: linenumberfilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/linenumberfilter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- linenumberfilter.h        22 Apr 2004 21:21:37 -0000      1.2
  +++ linenumberfilter.h        24 Apr 2004 06:55:03 -0000      1.3
  @@ -26,7 +26,7 @@
        public:
                String filter(const String& in) const 
throw(UnexpectedFormatException);
        };
  -};
  +} 
   
   
   #endif //_LOG4CXX_TESTS_UTIL_LINE_NUMBER_FILTER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/util/relativetimefilter.h
  
  Index: relativetimefilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/relativetimefilter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- relativetimefilter.h      22 Apr 2004 21:21:37 -0000      1.2
  +++ relativetimefilter.h      24 Apr 2004 06:55:03 -0000      1.3
  @@ -26,7 +26,7 @@
        public:
                String filter(const String& in) const 
throw(UnexpectedFormatException);
        };
  -};
  +} 
   
   
   #endif //_LOG4CXX_TESTS_UTIL_REL_TIME_FILTER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/util/threadfilter.h
  
  Index: threadfilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/threadfilter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- threadfilter.h    22 Apr 2004 21:21:37 -0000      1.2
  +++ threadfilter.h    24 Apr 2004 06:55:03 -0000      1.3
  @@ -26,7 +26,7 @@
        public:
                String filter(const String& in) const 
throw(UnexpectedFormatException);
        };
  -};
  +} 
   
   
   #endif //_LOG4CXX_TESTS_UTIL_THREAD_FILTER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/util/transformer.h
  
  Index: transformer.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/transformer.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- transformer.h     22 Apr 2004 21:21:37 -0000      1.2
  +++ transformer.h     24 Apr 2004 06:55:03 -0000      1.3
  @@ -31,6 +31,6 @@
                static void transform(const String& in, const String& out,
                        const Filter& filter) throw(UnexpectedFormatException);
        };
  -};
  +} 
   
   #endif //_LOG4CXX_TESTS_UTIL_TRANSFORMER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/util/xmllineattributefilter.h
  
  Index: xmllineattributefilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/xmllineattributefilter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- xmllineattributefilter.h  22 Apr 2004 21:21:37 -0000      1.2
  +++ xmllineattributefilter.h  24 Apr 2004 06:55:03 -0000      1.3
  @@ -26,7 +26,7 @@
        public:
                String filter(const String& in) const 
throw(UnexpectedFormatException);
        };
  -};
  +} 
   
   
   #endif //_LOG4CXX_TESTS_UTIL_XML_LINE_ATTRIBUTE_FILTER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/util/xmlthreadfilter.h
  
  Index: xmlthreadfilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/xmlthreadfilter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- xmlthreadfilter.h 22 Apr 2004 21:21:37 -0000      1.2
  +++ xmlthreadfilter.h 24 Apr 2004 06:55:03 -0000      1.3
  @@ -26,7 +26,7 @@
        public:
                String filter(const String& in) const 
throw(UnexpectedFormatException);
        };
  -};
  +} 
   
   
   #endif //_LOG4CXX_TESTS_UTIL_XML_THREAD_FILTER_H
  
  
  
  1.3       +1 -1      logging-log4cxx/tests/src/util/xmltimestampfilter.h
  
  Index: xmltimestampfilter.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/util/xmltimestampfilter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- xmltimestampfilter.h      22 Apr 2004 21:21:37 -0000      1.2
  +++ xmltimestampfilter.h      24 Apr 2004 06:55:03 -0000      1.3
  @@ -26,7 +26,7 @@
        public:
                String filter(const String& in) const 
throw(UnexpectedFormatException);
        };
  -};
  +} 
   
   
   #endif //_LOG4CXX_TESTS_UTIL_XML_TIMESTAMP_FILTER_H
  
  
  
  1.4       +1 -1      logging-log4cxx/tests/src/xml/xlevel.h
  
  Index: xlevel.h
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/tests/src/xml/xlevel.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- xlevel.h  22 Apr 2004 21:21:38 -0000      1.3
  +++ xlevel.h  24 Apr 2004 06:55:03 -0000      1.4
  @@ -61,4 +61,4 @@
                static const LevelPtr& toLevel(const String& sArg,
                        const LevelPtr& defaultLevel);
        };
  -};
  +} 
  
  
  

Reply via email to