diff options
author | George Hazan <ghazan@miranda.im> | 2018-12-18 15:40:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-12-18 15:40:58 +0300 |
commit | 0e854af70f6f330e63aa36fde125fbb0ca4ff8ef (patch) | |
tree | d681b5e06a8c572c13d82d0b49b54860fb896843 /plugins/StopSpamMod | |
parent | d60f86e09f10ab4d55b94c6193b3bb3d3ca46b18 (diff) |
C++ exceptions are disabled in all cases where they just prevent warnings
Diffstat (limited to 'plugins/StopSpamMod')
-rwxr-xr-x | plugins/StopSpamMod/src/stdafx.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/plugins/StopSpamMod/src/stdafx.h b/plugins/StopSpamMod/src/stdafx.h index 6ae48751de..011161651a 100755 --- a/plugins/StopSpamMod/src/stdafx.h +++ b/plugins/StopSpamMod/src/stdafx.h @@ -1,10 +1,18 @@ #pragma once #include <windows.h> +#include <malloc.h> using namespace std; #include <fstream> #include <string> +#include <sstream> + +#include <boost\regex.hpp> +#include <boost\algorithm\string.hpp> +#include <boost\nondet_random.hpp> +#include <boost\random\variate_generator.hpp> +#include <boost\random\uniform_int.hpp> #include <newpluginapi.h> #include <m_database.h> @@ -20,15 +28,6 @@ using namespace std; #include <m_variables.h> #include <m_folders.h> -#include <string> -#include <sstream> - -#include <boost\regex.hpp> -#include <boost\algorithm\string.hpp> -#include <boost\nondet_random.hpp> -#include <boost\random\variate_generator.hpp> -#include <boost\random\uniform_int.hpp> - #include "globals.h" #include "stopspam.h" #include "version.h" |