binpac: Adapted binpac to compile with MSVC for Windows environment.

This commit is contained in:
Elad Solomon 2021-04-22 17:36:41 +03:00 committed by Tim Wojtulewicz
parent dd3737b5c8
commit faa1b7abbf
5 changed files with 29 additions and 13 deletions

View file

@ -1,11 +1,11 @@
#include <vector>
class RE_Matcher;
namespace zeek { class RE_Matcher; }
namespace binpac
{
std::vector<RE_Matcher*>* uncompiled_re_matchers = 0;
std::vector<zeek::RE_Matcher*>* uncompiled_re_matchers = 0;
}