Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pyhpp/manipulation/graph.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,7 @@ void exposeGraph() {
DocClassMethod(pathValidation));

// DocClass(Graph)
class_<PyWGraph>(
class_<PyWGraph, PyWGraphPtr_t>(
"Graph",
init<const std::string&, const PyWDevicePtr_t&, const PyWProblemPtr_t&>())

Expand Down
1 change: 1 addition & 0 deletions src/pyhpp/manipulation/graph.hh
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ struct PyWGraph {
// Initialization
void initialize();
};
typedef std::shared_ptr<PyWGraph> PyWGraphPtr_t;

} // namespace manipulation
} // namespace pyhpp
Expand Down