Skip to content

Commit 0ab3c9a

Browse files
author
Colin Robertson
committed
Fix typo for issue 919
1 parent db05333 commit 0ab3c9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/cpp/lambda-expressions-constexpr.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: "constexpr lambda expressions in C++"
3-
ms.date: "07/19/2017"
3+
ms.date: "04/08/2019"
44
helpviewer_keywords: ["lambda expressions [C++], constexpr"]
55
ms.assetid: b56346cd-fbff-475f-aeaa-ed2010c6d6f7
66
---
77
# constexpr lambda expressions in C++
88

9-
**Visual Studio 2017 version 15.3 and later** (available with [/std:c++17](../build/reference/std-specify-language-standard-version.md)): A lambda expression may be declared as **constexpr** or used in a contant expression when the initialization of each data member that it captures or introduces is allowed within a constant expression.
9+
**Visual Studio 2017 version 15.3 and later** (available with [/std:c++17](../build/reference/std-specify-language-standard-version.md)): A lambda expression may be declared as **constexpr** or used in a constant expression when the initialization of each data member that it captures or introduces is allowed within a constant expression.
1010

1111
```cpp
1212
int y = 32;

0 commit comments

Comments
 (0)