From 3ee1bab316f880d7d7f7aedd8e1d9ce951def249 Mon Sep 17 00:00:00 2001 From: gabime Date: Fri, 2 Sep 2016 17:24:40 +0300 Subject: [PATCH] added std:: to vector decl in bench --- bench/spdlog-bench-mt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/spdlog-bench-mt.cpp b/bench/spdlog-bench-mt.cpp index 28f87807..e28e7bb8 100644 --- a/bench/spdlog-bench-mt.cpp +++ b/bench/spdlog-bench-mt.cpp @@ -28,7 +28,7 @@ int main(int argc, char* argv[]) logger->set_pattern("[%Y-%b-%d %T.%e]: %v"); std::atomic msg_counter {0}; - vector threads; + std::vector threads; for (int t = 0; t < thread_count; ++t) {