File tree Expand file tree Collapse file tree
error-messages/compiler-errors-1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -654,7 +654,7 @@ int main()
654654 ![ Storage of data in a numeric type union] ( ../cpp/media/vc38ul1.png " vc38UL1 ")
655655Storage of Data in NumericType Union
656656
657- ## <a id =" anonymous_unions " > </a > Anonymous unions
657+ ## <a name =" anonymous_unions " ></a > Anonymous unions
658658 Anonymous unions are unions that are declared without a * class-name* or * declarator-list* .
659659
660660``` cpp
Original file line number Diff line number Diff line change @@ -38,11 +38,12 @@ translation.priority.mt:
3838# Compiler Error C2094
3939label 'identifier' was undefined
4040
41- The label used by a [ goto] ( /dotnet/articles/csharp/language-reference/keywords/ goto) statement does not exist in the function.
41+ The label used by a [ goto] ( ../../cpp/ goto-statement-cpp.md ) statement does not exist in the function.
4242
43- The following sample generates C2094:
43+ ## Example
44+ The following sample generates C2094:
4445
45- ```
46+ ``` cpp
4647// C2094.c
4748int main () {
4849 goto test;
@@ -51,7 +52,7 @@ int main() {
5152
5253 Possible resolution:
5354
54- ```
55+ ``` cpp
5556// C2094b.c
5657int main () {
5758 goto test;
You can’t perform that action at this time.
0 commit comments