Commit 7db639f9 authored by Keith Smiley's avatar Keith Smiley Committed by Adam Cozzette

Make cold_threshold_ look used to fix warning

This field isn't used yet, but it will be in the future so we don't want
to remove it. This fixes the warning in the meantime.
parent 105a0666
......@@ -521,7 +521,11 @@ class ColdChunkSkipper {
// Tuning parameters for ColdChunkSkipper.
const double kColdRatio = 0.005;
bool ColdChunkSkipper::IsColdChunk(int chunk) { return false; }
bool ColdChunkSkipper::IsColdChunk(int chunk) {
// Mark this variable as used until it is actually used
(void) cold_threshold_;
return false;
}
void ColdChunkSkipper::OnStartChunk(int chunk, int cached_has_bit_index,
const std::string& from,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment