added std:: to vector decl in bench

This commit is contained in:
gabime 2016-09-02 17:24:40 +03:00
parent c3757c99d5
commit 3ee1bab316

View File

@ -28,7 +28,7 @@ int main(int argc, char* argv[])
logger->set_pattern("[%Y-%b-%d %T.%e]: %v");
std::atomic<int > msg_counter {0};
vector<thread> threads;
std::vector<thread> threads;
for (int t = 0; t < thread_count; ++t)
{