Visual studio doesnt like throw definitions like this

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8324 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2007-10-23 21:05:01 +00:00
parent 2e1f86fd0c
commit 6720b7bccb
2 changed files with 2 additions and 2 deletions

View 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:

View 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);