1 //===----------------------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
8 #ifndef TEST_SUPPORT_MAKE_TEST_THREAD_H
9 #define TEST_SUPPORT_MAKE_TEST_THREAD_H
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