Added note about thread safety in assertions

- closes #875
This commit is contained in:
Phil Nash 2017-04-11 14:25:19 +01:00
parent 714d01c07c
commit b591cb9a03
1 changed files with 5 additions and 0 deletions

View File

@ -131,6 +131,11 @@ To support Matchers a slightly different form is used. Matchers have [their own
Matchers can be composed using `&&`, `||` and `!` operators. Matchers can be composed using `&&`, `||` and `!` operators.
## Thread Safety
Currently assertions in Catch are not thread safe.
For more details, along with workarounds, see the section on [the limitations page](limitations.md#thread-safe-assertions).
--- ---
[Home](Readme.md) [Home](Readme.md)