Skip to content

Commit

Permalink
Fix clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
LinZhihao-723 committed Sep 8, 2024
1 parent a65f26f commit 452b860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/core/src/clp/NetworkReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ NetworkReader::NetworkReader(
m_buffer_pool_size{std::max(cMinBufferPoolSize, buffer_pool_size)},
m_buffer_size{std::max(cMinBufferSize, buffer_size)} {
for (size_t i = 0; i < m_buffer_pool_size; ++i) {
m_buffer_pool.emplace_back(Array<char>(m_buffer_size));
m_buffer_pool.emplace_back(m_buffer_size);
}
m_downloader_thread = std::make_unique<DownloaderThread>(*this, offset, disable_caching);
m_downloader_thread->start();
Expand Down

0 comments on commit 452b860

Please sign in to comment.