Skip to content

Commit 5746244

Browse files
author
p12
committed
Index: add missing <future> content
1 parent e0ca45e commit 5746244

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

index-functions-cpp.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3993,4 +3993,32 @@
39933993

39943994
<function name="std::async" link="cpp/thread/async"/>
39953995

3996+
<enum name="std::launch" link="cpp/thread/launch">
3997+
<const name="async" link="."/>
3998+
<const name="deferred" link="."/>
3999+
</enum>
4000+
4001+
<enum name="std::future_status" link="cpp/thread/future_status">
4002+
<const name="ready" link="."/>
4003+
<const name="timeout" link="."/>
4004+
<const name="deferred" link="."/>
4005+
</enum>
4006+
4007+
<class name="std::future_error" link="cpp/thread/future_error">
4008+
<inherits name="std::logic_error"/>
4009+
<constructor/>
4010+
<function name="code"/>
4011+
<function name="what"/>
4012+
</class>
4013+
4014+
<function name="std::future_category" link="cpp/thread/future_category"/>
4015+
4016+
<enum name="std::future_errc" link="cpp/thread/future_errc">
4017+
<const name="broken_promise" link="."/>
4018+
<const name="future_already_retrieved" link="."/>
4019+
<const name="promise_already_satisfied" link="."/>
4020+
<const name="no_state" link="."/>
4021+
<!-- todo helpers -->
4022+
</enum>
4023+
39964024
</index>

0 commit comments

Comments
 (0)