std::launch
Min standard notice:
Header: <future>
std::launch is a BitmaskType. It specifies the launch policy for a task executed by the std::async function.
# Declarations
enum class launch : /* unspecified */ {
async = /* unspecified */,
deferred = /* unspecified */,
/* implementation-defined */
};
(since C++11)
# Defect reports
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 2102 | C++11 | std::launch was an implementation-defined type | it is not implementation-defined |