aboutsummaryrefslogtreecommitdiff
path: root/src/test/util_threadnames_tests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/util_threadnames_tests.cpp')
-rw-r--r--src/test/util_threadnames_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/util_threadnames_tests.cpp b/src/test/util_threadnames_tests.cpp
index ae913939e8..45d3a58fd3 100644
--- a/src/test/util_threadnames_tests.cpp
+++ b/src/test/util_threadnames_tests.cpp
@@ -40,7 +40,7 @@ std::set<std::string> RenameEnMasse(int num_threads)
threads.reserve(num_threads);
for (int i = 0; i < num_threads; ++i) {
- threads.push_back(std::thread(RenameThisThread, i));
+ threads.emplace_back(RenameThisThread, i);
}
for (std::thread& thread : threads) thread.join();