Skip to content

Commit

Permalink
TokenType: Fix ambigous symbol in python bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejKastak committed Aug 9, 2020
1 parent dd4ee70 commit ccdde60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/yaramod_python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ void addBasicClasses(py::module& module)

void addTokenStreamClass(py::module& module)
{
py::enum_<TokenType>(module, "TokenType")
py::enum_<yaramod::TokenType>(module, "TokenType")
.value("RULE_NAME", TokenType::RULE_NAME)
.value("TAG", TokenType::TAG)
.value("HEX_ALT", TokenType::HEX_ALT)
Expand Down

0 comments on commit ccdde60

Please sign in to comment.