Skip to content

Commit

Permalink
Another clang fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantin Pape committed Feb 18, 2019
1 parent f9bde6d commit da4db4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/lib/distributed/lifted_utils.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ namespace distributed {
const auto graph = Graph(graphPath, 1);
liftedEdgesFromNode(graph, srcNode, graphDepth, tmp);
}
xt::pytensor<uint64_t, 2> out({tmp.size(), 2});
xt::pytensor<uint64_t, 2> out({static_cast<int64_t>(tmp.size()), 2});
{
py::gil_scoped_release allowThreads;
for(std::size_t i = 0; i < tmp.size(); ++i) {
Expand Down

0 comments on commit da4db4a

Please sign in to comment.