diff options
Diffstat (limited to 'msvc/test_threads/test_threads_main.cpp')
-rw-r--r-- | msvc/test_threads/test_threads_main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/msvc/test_threads/test_threads_main.cpp b/msvc/test_threads/test_threads_main.cpp new file mode 100644 index 0000000..0a022fb --- /dev/null +++ b/msvc/test_threads/test_threads_main.cpp @@ -0,0 +1,11 @@ +#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; +} |