Index: include/AdblockPlus/FilterEngine.h |
=================================================================== |
--- a/include/AdblockPlus/FilterEngine.h |
+++ b/include/AdblockPlus/FilterEngine.h |
@@ -4,7 +4,13 @@ |
#include <vector> |
#include <map> |
#include <string> |
+#ifdef _WIN32 || _WIN64 |
Wladimir Palant
2013/04/09 05:47:07
I would prefer #if _MSC_VER_ here - it's cleaner,
|
+#include <memory> |
+#include <cctype> |
+#include <functional> |
Wladimir Palant
2013/04/09 05:47:07
Are these two headers really required on Windows?
Oleksandr
2013/04/09 05:54:21
<cctype> - for isspace
<functional> - for not1 and
Wladimir Palant
2013/04/09 06:43:48
Then they should be added at the top of FilterEngi
Felix Dahlke
2013/04/09 08:18:06
If it compiles on Linux/Android without them, they
Wladimir Palant
2013/04/09 08:38:32
We are using functions from these headers. It mere
|
+#else |
#include <tr1/memory> |
+#endif |
namespace AdblockPlus |
{ |