Skip to content

Commit

Permalink
Fix missing builder
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Jun 8, 2018
1 parent cc5617d commit 311c795
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions api/python/PE/pyPE.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ void init_python_module(py::module& m) {

void init_objects(py::module& m) {
CREATE(Parser, m);

CREATE(Binary, m);
CREATE(DosHeader, m);
CREATE(Header, m);
Expand Down Expand Up @@ -87,6 +88,8 @@ void init_objects(py::module& m) {
CREATE(LoadConfigurationV6, m);
CREATE(LoadConfigurationV7, m);

CREATE(Builder, m);

}


Expand Down
2 changes: 2 additions & 0 deletions api/python/PE/pyPE.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ SPECIALIZE_CREATE(LoadConfigurationV7);

SPECIALIZE_CREATE(ResourcesManager);

SPECIALIZE_CREATE(Builder);

}
}

Expand Down

0 comments on commit 311c795

Please sign in to comment.