Set checkpointing fix (#1357)

* Fix set checkpointing, add tests
* Documentation update
This commit is contained in:
Jacqueline Deans
2022-10-07 14:24:21 -05:00
committed by GitHub
parent f19ba7df78
commit 3d2e8e52ca
9 changed files with 650 additions and 84 deletions

View File

@ -119,12 +119,4 @@ The types in an std::pair cannot be sequence STL types (vector, queue, stack, et
std::pair<int, std::vector<int>>
```
The types inside an std::set cannot be any STL types (excluding strings).
```
// This will fail to compile
std::set<std::vector<int>>
```
These bugs are being worked on.
[Continue to Threads](Threads)