Skip to content

Commit

Permalink
Remove debugging print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
yinggeh committed Aug 7, 2024
1 parent bfc95e4 commit 9cafc3d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/metric.cc
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,10 @@ Metric::Metric(
size_t bucket_size = buckets_shm_->ByteSize() / sizeof(double);
std::vector<double> buckets;
buckets.reserve(bucket_size);
printf("xxxxxxxxxxxxxx: [");
for (size_t i = 0; i < bucket_size; ++i) {
buckets.emplace_back(
reinterpret_cast<double*>(buckets_shm_->DataPtr())[i]);
printf("%f, ", reinterpret_cast<double*>(buckets_shm_->DataPtr())[i]);
}
printf("]\n");
buckets_ = std::move(buckets);
}

Expand Down

0 comments on commit 9cafc3d

Please sign in to comment.