From 53776a90cf61b932756626655c2d18af50687bb1 Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Sun, 21 Jul 2019 21:43:24 +0100 Subject: [PATCH] Add 'Introduced in Catch 2.7.1.' note --- docs/generators.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/generators.md b/docs/generators.md index 57fdf44b..685aea79 100644 --- a/docs/generators.md +++ b/docs/generators.md @@ -96,6 +96,8 @@ scope and thus capturing references is dangerous. If you need to use variables inside the generator expression, make sure you thought through the lifetime implications and use `GENERATE_COPY` or `GENERATE_REF`.** +> `GENERATE_COPY` and `GENERATE_REF` were introduced in Catch 2.7.1. + You can also override the inferred type by using `as` as the first argument to the macro. This can be useful when dealing with string literals, if you want them to come out as `std::string`: