Skip to content

Commit

Permalink
fixup! huh?
Browse files Browse the repository at this point in the history
  • Loading branch information
meyerzinn committed Apr 12, 2024
1 parent af3c47c commit fa467e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libgalois/include/galois/graphs/LS_LC_CSR_Graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ class LS_LC_CSR_Graph : private boost::noncopyable {
template <typename E = EdgeData, typename = std::enable_if<HasEdgeData>>
inline void setEdgeData(EdgeHandle handle, E data) {
m_edge_data.lazy_emplace_l(
handle, [&](EdgeData& v) { v = data; },
[&](auto cons) { cons(handle, data); });
handle, [&](auto& v) { v.second = data; },
[&](auto const& cons) { cons(handle, data); });
}

inline VertexTopologyID begin() const noexcept {
Expand Down

0 comments on commit fa467e1

Please sign in to comment.