Skip to content

Commit

Permalink
chore: Run pre-commit on repo
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickkenney9801 committed Mar 7, 2024
1 parent ae40781 commit 7c9c072
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libgalois/include/galois/LargeVector.h
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,4 @@ istream& operator>>(istream& is, galois::LargeVector<T>& vec) {
}
} // namespace std

#endif
#endif
6 changes: 3 additions & 3 deletions libgalois/include/galois/graphs/LS_LC_CSR_64_Graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -293,13 +293,13 @@ class LS_LC_CSR_64_Graph :

template <bool _A1 = HasNoLockable, bool _A2 = HasOutOfLineLockable>
void acquireNode(GraphNode N, MethodFlag mflag,
typename std::enable_if<!_A1 && !_A2>::type* = 0) {
typename std::enable_if<!_A1&& !_A2>::type* = 0) {
galois::runtime::acquire(&nodeData[N], mflag);
}

template <bool _A1 = HasOutOfLineLockable, bool _A2 = HasNoLockable>
void acquireNode(GraphNode N, MethodFlag mflag,
typename std::enable_if<_A1 && !_A2>::type* = 0) {
typename std::enable_if<_A1&& !_A2>::type* = 0) {
this->outOfLineAcquire(getId(N), mflag);
}

Expand Down Expand Up @@ -338,7 +338,7 @@ class LS_LC_CSR_64_Graph :
template <bool _A1 = EdgeData::has_value,
bool _A2 = LargeArray<FileEdgeTy>::has_value>
void constructEdgeValue(FileGraph&, typename FileGraph::edge_iterator nn,
typename std::enable_if<_A1 && !_A2>::type* = 0) {
typename std::enable_if<_A1&& !_A2>::type* = 0) {
edgeData.set(*nn, {});
}

Expand Down
2 changes: 1 addition & 1 deletion libgalois/include/galois/graphs/MorphGraph.h
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ class MorphGraph : private boost::noncopyable {
EdgeTy*
constructOutEdgeValue(FileGraph&, typename FileGraph::edge_iterator,
GraphNode src, GraphNode dst,
typename std::enable_if<_A1 && !_A2>::type* = 0) {
typename std::enable_if<_A1&& !_A2>::type* = 0) {
return createOutEdge(src, dst, galois::MethodFlag::UNPROTECTED);
}

Expand Down

0 comments on commit 7c9c072

Please sign in to comment.