aboutsummaryrefslogtreecommitdiff
path: root/src/yue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/yue.cpp')
-rw-r--r--src/yue.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yue.cpp b/src/yue.cpp
index 26f581e..7e39367 100644
--- a/src/yue.cpp
+++ b/src/yue.cpp
@@ -57,8 +57,8 @@ std::future<R> async(const std::function<R()>& f) {
57#else 57#else
58template<class R> 58template<class R>
59std::future<R> async(const std::function<R()>& f) { 59std::future<R> async(const std::function<R()>& f) {
60 // fallback: ignore stack size 60 // fallback: ignore stack size
61 return std::async(std::launch::async, f); 61 return std::async(std::launch::async, f);
62} 62}
63#endif 63#endif
64 64