We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd31ed1 commit 491599eCopy full SHA for 491599e
src/cts/src/CtsOptions.cpp
@@ -33,8 +33,12 @@ void CtsOptions::limitSinkClusteringSizes(unsigned limit)
33
}
34
auto lowerBound = std::lower_bound(
35
sinkClusteringSizes_.begin(), sinkClusteringSizes_.end(), limit);
36
- sinkClusteringSizes_.assign(sinkClusteringSizes_.begin(), lowerBound);
+ sinkClusteringSizes_.erase(lowerBound, sinkClusteringSizes_.end());
37
sinkClusteringSizes_.push_back(limit);
38
+
39
+ for(auto i : sinkClusteringSizes_) {
40
+ logger_->report("i: {}", i);
41
+ }
42
43
44
void CtsOptions::recordBuffer(odb::dbMaster* master, MasterType type)
0 commit comments