[libcxx-commits] [PATCH] D46140: [coroutines] Add	std::experimental::task<T> type
    Lewis Baker via Phabricator via libcxx-commits 
    libcxx-commits at lists.llvm.org
       
    Wed Apr  3 12:48:12 PDT 2019
    
    
  
lewissbaker marked 3 inline comments as done.
lewissbaker added inline comments.
================
Comment at: include/experimental/task:160
+            __get_allocator<_CharAlloc>(__pointer, __size);
+        _CharAlloc __allocatorOnStack = _VSTD::move(__allocatorInFrame);
+        __allocatorInFrame.~_CharAlloc();
----------------
This should use explicit move construction rather than implicit move construction.
Repository:
  rCXX libc++
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D46140/new/
https://reviews.llvm.org/D46140
    
    
More information about the libcxx-commits
mailing list