diff options
author | rustyx <me@rustyx.org> | 2017-10-16 14:40:50 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2017-10-16 17:26:54 (GMT) |
commit | 33df2fa1694c9fdc1912aecaa19babc194f377ac (patch) | |
tree | 32636d71050cf3ac106deeb660e6ef5702a511ce /msvc/test_threads/test_threads_main.cpp | |
parent | f4f814cd4cca4be270c22c4e943cd5ae6c40fea9 (diff) | |
download | jemalloc-33df2fa1694c9fdc1912aecaa19babc194f377ac.zip jemalloc-33df2fa1694c9fdc1912aecaa19babc194f377ac.tar.gz jemalloc-33df2fa1694c9fdc1912aecaa19babc194f377ac.tar.bz2 |
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 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; +} |