Run clang-format
This commit is contained in:
@@ -1,18 +1,17 @@
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
|
||||
void hello()
|
||||
void
|
||||
hello()
|
||||
{
|
||||
std::cout << "Hello Concurrent World\n";
|
||||
std::cout << "Hello Concurrent World\n";
|
||||
}
|
||||
|
||||
int main()
|
||||
int
|
||||
main()
|
||||
{
|
||||
//boost::thread t([]()
|
||||
std::thread t([]()
|
||||
{
|
||||
std::cout << "Hello Concurrent World\n";
|
||||
});
|
||||
// boost::thread t([]()
|
||||
std::thread t([]() { std::cout << "Hello Concurrent World\n"; });
|
||||
|
||||
t.join();
|
||||
t.join();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user