Commit df819ce
committed
Fix include style in exec/sequence.hpp
The header `exec/sequence.hpp` has always used the `< >` style for includes,
e.g. `#include <stdexec/execution.hpp>`. This doesn't work with NVC++.
But that hasn't been a problem in practice because none of the examples
or tests seem to have included `exec/sequence.hpp`. But a few days ago
`exec/repeat_n.hpp` and `exec/repeat_effect_until.hpp` were both changed
to have `#include "sequence.hpp"`. That broke many of the NVC++ tests
for stdexec with
```
".../sequence.hpp", line 18: catastrophic error: cannot open source file "stdexec/execution.hpp"
#include <stdexec/execution.hpp>
^
```
Fix the failures by changing `exec/sequence.hpp` to use relative
includes in quotes rather than `< >`. This fixes the NVC++ tests.1 parent a5efb0a commit df819ce
1 file changed
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
19 | | - | |
20 | | - | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| |||
0 commit comments