Author: baufo
Date: Sat Aug 16 14:57:42 2008
New Revision: 28646

URL: http://svn.gna.org/viewcvs/wesnoth?rev=28646&view=rev
Log:
Add deconstructor to the forum_user_handler class to make it compile again

Modified:
    trunk/src/server/forum_user_handler.hpp
    trunk/src/server/user_handler.hpp

Modified: trunk/src/server/forum_user_handler.hpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/server/forum_user_handler.hpp?rev=28646&r1=28645&r2=28646&view=diff
==============================================================================
--- trunk/src/server/forum_user_handler.hpp (original)
+++ trunk/src/server/forum_user_handler.hpp Sat Aug 16 14:57:42 2008
@@ -23,6 +23,7 @@
 class fuh : public user_handler {
        public:
                fuh(config c);
+               ~fuh() {}
 
                void add_user(const std::string& name, const std::string& mail, 
const std::string& password);
                void remove_user(const std::string& name);

Modified: trunk/src/server/user_handler.hpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/src/server/user_handler.hpp?rev=28646&r1=28645&r2=28646&view=diff
==============================================================================
--- trunk/src/server/user_handler.hpp (original)
+++ trunk/src/server/user_handler.hpp Sat Aug 16 14:57:42 2008
@@ -28,7 +28,7 @@
        // implementations
 
        public:
-               virtual ~user_handler();
+               virtual ~user_handler() {}
 
                //! Adds a user.
                //! Throws an error containing the error message if adding fails


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to