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,27 +1,34 @@
#include <thread>
void some_function()
{}
void some_other_function(int)
{}
std::thread f()
void
some_function()
{
void some_function();
return std::thread(some_function);
}
std::thread g()
{
void some_other_function(int);
std::thread t(some_other_function,42);
return t;
}
int main()
void
some_other_function(int)
{
std::thread t1=f();
t1.join();
std::thread t2=g();
t2.join();
}
std::thread
f()
{
void some_function();
return std::thread(some_function);
}
std::thread
g()
{
void some_other_function(int);
std::thread t(some_other_function, 42);
return t;
}
int
main()
{
std::thread t1 = f();
t1.join();
std::thread t2 = g();
t2.join();
}