Skip to content

Commit

Permalink
Unify '\n' with end of preceding string literal
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Jan 22, 2024
1 parent 40e04e6 commit d1ff02e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmarks/dbscan/ArborX_DBSCANVerification.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,12 @@ bool verifyClustersAreUnique(ExecutionSpace const &exec_space,
}
if (cluster_sets.size() != num_unique_cluster_indices)
{
std::cerr << "Number of components does not match" << '\n';
std::cerr << "Number of components does not match\n";
return false;
}
if (num_clusters != num_unique_cluster_indices)
{
std::cerr << "Cluster IDs are not unique" << '\n';
std::cerr << "Cluster IDs are not unique\n";
return false;
}

Expand Down

0 comments on commit d1ff02e

Please sign in to comment.