Closed stephanmg closed 4 years ago
In Cellnetwork_impl.hh in lines 4942 and 4994 the following statements seem wrong:
v_it->template getOutEdges(tmp_edges).
v_it->template getOutEdges(tmp_edges)
It should probably read as: v_it->getOutEdges(tmp_edges);.
v_it->getOutEdges(tmp_edges);
This will prevent from building on OSX Catalina with MacOSX10.15.sdk Commandline tools (Clang 11?).
In Cellnetwork_impl.hh in lines 4942 and 4994 the following statements seem wrong:
v_it->template getOutEdges(tmp_edges)
.It should probably read as:
v_it->getOutEdges(tmp_edges);
.This will prevent from building on OSX Catalina with MacOSX10.15.sdk Commandline tools (Clang 11?).