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 ff7db11 commit 772b2a3Copy full SHA for 772b2a3
ramrecord.C
@@ -130,15 +130,12 @@ Long64_t RAMIndex::GetRow(int refid, int pos)
130
if (low == fIndex.end()) {
131
return -1; // nothing found
132
} else if (low == fIndex.begin()) {
133
- std::cout << "low=(" << low->first.first << "," << low->first.second << ")\n";
134
return low->second;
135
} else {
136
if ((low->first.first == refid) && (low->first.second == pos)) {
137
138
139
140
--low;
141
142
143
}
144
0 commit comments