Run clang-format

This commit is contained in:
Bassem Girgis
2018-10-18 00:40:34 -05:00
parent fffe4528da
commit 31c32e368a
149 changed files with 5974 additions and 6287 deletions

View File

@@ -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();
}