Review fixes

This commit is contained in:
Maksim Andrianov 2019-01-24 19:19:51 +03:00 committed by mpimenov
parent db2b3db186
commit 6641037200
2 changed files with 1 additions and 2 deletions

View file

@ -105,7 +105,7 @@ UNIT_TEST(ThreadPoolComputational_ManyTasks)
{
for (size_t t = 0; t < kTimes; ++t)
{
size_t taskCount = 11;
size_t const taskCount = 11;
std::atomic<size_t> counter{0};
{
base::thread_pool::computational::ThreadPool threadPool(4);

View file

@ -1,4 +1,3 @@
// This file contains ThreadPool class.
#pragma once
#include "base/assert.hpp"