mirror of
https://github.com/boostorg/thread.git
synced 2026-01-23 18:12:12 +00:00
12 lines
139 B
C++
12 lines
139 B
C++
#include <boost/thread.hpp>
|
|
|
|
void run_thread() {
|
|
return;
|
|
}
|
|
|
|
int main() {
|
|
boost::thread t(run_thread);
|
|
return 0;
|
|
}
|
|
|