]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Visual studio doesnt like throw definitions like this
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 23 Oct 2007 21:05:01 +0000 (21:05 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Tue, 23 Oct 2007 21:05:01 +0000 (21:05 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8324 e03df62e-2008-0410-955e-edbf42e46eb7

include/configreader.h
src/configreader.cpp

index 2bb7af091217e5fef51d2a8038dca673a4cc095a..37e3c1f44ab0db37843b8eef22fc988958b66368 100644 (file)
@@ -235,7 +235,7 @@ class CoreExport ServerConfig : public Extensible
 
        /** Check that there is only one of each configuration item
         */
-       bool CheckOnce(char* tag) throw (CoreException);
+       bool CheckOnce(char* tag);
   
   public:
 
index d84aee5d4e11bbe807d35deadd74cddf007d4d52..a0fe67c5f7caf6b544377dd36c6d07ee76e6602c 100644 (file)
@@ -151,7 +151,7 @@ void ServerConfig::Send005(User* user)
                user->WriteServ("005 %s %s", user->nick, line->c_str());
 }
 
-bool ServerConfig::CheckOnce(char* tag) throw (CoreException)
+bool ServerConfig::CheckOnce(char* tag)
 {
        int count = ConfValueEnum(this->config_data, tag);