2011-12-07 25 views
1

我試圖讓std::async推出一個接受unique_ptr用gcc 4.6.2的功能:調用一個函數採取的unique_ptr用的std ::異步

#include <type_traits> 
#include <memory> 
#include <functional> 
#include <future> 

struct Foo {}; 

// my gcc does not have this, same definition as in 30.2.6 
template<typename T> 
typename std::decay<T>::type decay_copy(T&& v) { return std::forward<T>(v); } 

int main() { 
    std::function<int(std::unique_ptr<Foo>)> f = [](std::unique_ptr<Foo>) { return 23; }; 

    std::unique_ptr<Foo> fp{new Foo}; 
    std::unique_ptr<Foo> fp2{std::move(fp)}; 
    // works, this seems to satisfy the requirements of async 
    f(decay_copy(std::move(fp2))); 

    // does not work with reference to a deleted function 
    // std::async(f, std::move(fp2)); 
} 

這是預期的行爲或者是一個gcc的錯誤?

回答

2

可能是一個bug。它可以用g ++ 4.7編譯。