c4c2592c83
Add braces around single-line blocks, and remove line breaks before function-opening braces. This resolves #537.
12 lines
200 B
C++
12 lines
200 B
C++
#include "test_threads.h"
|
|
#include <future>
|
|
#include <functional>
|
|
#include <chrono>
|
|
|
|
using namespace std::chrono_literals;
|
|
|
|
int main(int argc, char** argv) {
|
|
int rc = test_threads();
|
|
return rc;
|
|
}
|