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