Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 2ff5df41 authored by muralikrishnan's avatar muralikrishnan
Browse files

missing std added for endl

parent 5aacca6e
No related branches found
No related tags found
1 merge request!561P3M solver
......@@ -109,11 +109,11 @@ public:
{
std::size_t bucketId = getBucketId(i);
if(bucketId >= Nbucket) {
std::cout << "Bucket with id: " << bucketId << " is wrong" << endl;
std::cout << "Rank: " << Ippl::myNode() << endl;
std::cout << "Buckets: " << bucketsPerDim_m << endl;
std::cout << "Particle coords: " << particles_mr.R[i] << endl;
std::cout << "rmin_m: " << rmin_m << "rmax_m: " << rmax_m << endl;
std::cout << "Bucket with id: " << bucketId << " is wrong" << std::endl;
std::cout << "Rank: " << Ippl::myNode() << std::endl;
std::cout << "Buckets: " << bucketsPerDim_m << std::endl;
std::cout << "Particle coords: " << particles_mr.R[i] << std::endl;
std::cout << "rmin_m: " << rmin_m << "rmax_m: " << rmax_m << std::endl;
throw IpplException("HashPairBuilderParallel::forEach",
"Particle outside the local domain");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment