Skip to content

Commit 2d8acc6

Browse files
author
mikeblome
committed
update to static-assert
1 parent 1e3b88f commit 2d8acc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/cpp/static-assert.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "static_assert"
3-
ms.date: "11/04/2016"
3+
ms.date: "07/29/2019"
44
f1_keywords: ["static_assert_cpp"]
55
helpviewer_keywords: ["C++ keywords, static_assert", "C2338", "assertions [C++], static_assert", "static_assert"]
66
ms.assetid: 28dd3668-e78c-4de8-ba68-552084743426
@@ -14,7 +14,7 @@ Tests a software assertion at compile time. If the specified constant expression
1414
```
1515
static_assert( constant-expression, string-literal );
1616
17-
static_assert( constant-expression ); // Visual Studio 2017 and later
17+
static_assert( constant-expression ); // C++17 (Visual Studio 2017 and later)s
1818
```
1919

2020
#### Parameters

0 commit comments

Comments
 (0)