Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2016-01-07 19:31:21 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:04:22 +0300
commitab2e44c370b374debf5d5853259741e3081b0a20 (patch)
tree11d4dd77cb852bbbf2276173f1df723850a9ea95 /std
parent5ba841871f09d7b4f300e2dede830a6105879d0b (diff)
std/future.hpp with std::future, std::async and std::future_status.
Diffstat (limited to 'std')
-rw-r--r--std/future.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/std/future.hpp b/std/future.hpp
new file mode 100644
index 0000000000..1ef27855a6
--- /dev/null
+++ b/std/future.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#ifdef new
+#undef new
+#endif
+
+#include <future>
+
+using std::async;
+using std::future_status;
+using std::launch;
+
+#ifdef DEBUG_NEW
+#define new DEBUG_NEW
+#endif