Skip to content

Commit

Permalink
fixup! remove unused methods of LargeVector
Browse files Browse the repository at this point in the history
  • Loading branch information
meyerzinn committed Apr 21, 2024
1 parent 84153fc commit c23c43c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libgalois/include/galois/graphs/LS_LC_CSR_Graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ class LS_LC_CSR_Graph : private boost::noncopyable {
VertexRange vertices() { return VertexRange(begin(), end()); }

VertexTopologyID addVertexTopologyOnly() {
m_vertices.emplace_back();
m_vertices.resize(m_vertices.size() + 1);
if constexpr (HasVertexData) {
m_vertex_data.resize(m_vertices.size());
}
Expand Down

0 comments on commit c23c43c

Please sign in to comment.