DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 10.6.0-1 / yo / threading / examples / nostate.cc
12345678910
#include <future> #include <iostream> //code int main() { std::future<int> fut; fut.get(); } //=