Internal DCHECK for the buffer index.
| 382 | |
| 383 | /// Internal DCHECK for the buffer index. |
| 384 | void DCheckReadBufferIdx(int buffer_idx) { |
| 385 | DCHECK_LT(buffer_idx, file_group_->tmp_file_mgr()->GetNumReadBuffersPerFile()); |
| 386 | DCHECK_GE(buffer_idx, 0); |
| 387 | } |
| 388 | }; |
| 389 | |
| 390 | /// TmpFileDummy is a derived class of TmpFile for dummy allocation, used in |
nothing calls this directly
no test coverage detected