diff options
author | rustyx <me@rustyx.org> | 2017-10-16 16:40:50 +0200 |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2017-10-16 10:26:54 -0700 |
commit | 33df2fa1694c9fdc1912aecaa19babc194f377ac (patch) | |
tree | 32636d71050cf3ac106deeb660e6ef5702a511ce /msvc/test_threads/test_threads_main.cpp | |
parent | f4f814cd4cca4be270c22c4e943cd5ae6c40fea9 (diff) |
Fix MSVC 2015 project and add a VS 2017 solution
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 00000000..0a022fba --- /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; +} |