Bump year
[metaproxy-moved-to-github.git] / src / session.hpp
index f657613..124a8c1 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of Metaproxy.
-   Copyright (C) 2005-2008 Index Data
+   Copyright (C) 2005-2010 Index Data
 
 Metaproxy is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
@@ -36,7 +36,7 @@ namespace metaproxy_1 {
             ++m_global_id;
             m_id =  m_global_id;
             m_close = false;
-        };
+        }
         
         /// copy session including old id
         Session(const Session &s) : m_id(s.m_id), m_close(s.m_close) {};
@@ -56,20 +56,21 @@ namespace metaproxy_1 {
         
         unsigned long id() const {
             return m_id;
-        };
+        }
         
         bool is_closed() const {
             return m_close;
-        };
+        }
         
         /// mark session closed, can not be unset
         void close() {
             m_close = true;
-        };
+        }
 
         bool operator == (Session &ses) const {
             return ses.m_id == m_id;
         }
+        
     private:
         
         unsigned long int m_id;