You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/error-messages/compiler-errors-1/compiler-error-c2362.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,21 @@
1
1
---
2
2
title: "Compiler Error C2362"
3
-
ms.date: "11/04/2016"
3
+
ms.date: "06/03/2019"
4
4
f1_keywords: ["C2362"]
5
5
helpviewer_keywords: ["C2362"]
6
6
ms.assetid: 7aafecbc-b3cf-45a6-9ec3-a17e3f222511
7
7
---
8
8
# Compiler Error C2362
9
9
10
-
initialization of 'identifier' is skipped by 'goto label'
10
+
> initialization of '*identifier*' is skipped by 'goto *label*'
11
11
12
-
When compiling with [/Za](../../build/reference/za-ze-disable-language-extensions.md), jumping to the label prevents the identifier from being initialized.
12
+
When compiled by using [/Za](../../build/reference/za-ze-disable-language-extensions.md), a jump to the label prevents the identifier from being initialized.
13
13
14
-
You cannot jump past a declaration with an initializer unless the declaration is enclosed in a block that is not entered, or the variable has already been initialized.
14
+
You can't jump past a declaration with an initializer unless the declaration is enclosed in a block that isn't entered, or the variable has already been initialized.
0 commit comments