[PowerPC][NFC] Cleanup PPCCTRLoopsVerify pass
[llvm-project.git] / libcxx / test / support / make_test_thread.h
blob3366d126ae22013c86db8260bc2c9e656680cf8f
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 #ifndef TEST_SUPPORT_MAKE_TEST_THREAD_H
9 #define TEST_SUPPORT_MAKE_TEST_THREAD_H
11 #include <thread>
12 #include <utility>
14 namespace support {
16 template <class F, class ...Args>
17 std::thread make_test_thread(F&& f, Args&& ...args) {
18 return std::thread(std::forward<F>(f), std::forward<Args>(args)...);
21 } // end namespace support
23 #endif // TEST_SUPPORT_MAKE_TEST_THREAD_H