Skip to content

Commit 0e93d2c

Browse files
committed
Initialize execution policy objects with unspecified as suggested by Bryce
1 parent bddd27d commit 0e93d2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

execution_policies.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ <h1>Vector execution policy</h1>
6262
<h1>Execution policy objects</h1>
6363

6464
<pre>
65-
inline constexpr execution::unsequenced_policy unseq{};
66-
inline constexpr execution::vector_policy vec{};
65+
inline constexpr execution::unsequenced_policy unseq{ <ins><i>unspecified</i></ins> };
66+
inline constexpr execution::vector_policy vec{ <ins><i>unspecified</i></ins> };
6767
</pre>
6868

6969
<p>The header <code>&lt;experimental/execution&gt;</code> declares a global object associated with each type of execution policy defined by this Technical Specification.</p>

0 commit comments

Comments
 (0)