[lld][WebAssembly] Add `--table-base` setting
[llvm-project.git] / libcxx / test / support / make_test_thread.h
blobeaf967e2180ede84d999380f2cdf2cb55f00cdf5
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 //===----------------------------------------------------------------------===//
9 #ifndef TEST_SUPPORT_MAKE_TEST_THREAD_H
10 #define TEST_SUPPORT_MAKE_TEST_THREAD_H
12 #include <thread>
13 #include <utility>
15 namespace support {
17 template <class F, class ...Args>
18 std::thread make_test_thread(F&& f, Args&& ...args) {
19 return std::thread(std::forward<F>(f), std::forward<Args>(args)...);
22 } // end namespace support
24 #endif // TEST_SUPPORT_MAKE_TEST_THREAD_H