Skip to content

Commit 486cd52

Browse files
authored
Add blockquotes for error messages in range [C2611, C2650]
1 parent 25815cb commit 486cd52

25 files changed

+25
-25
lines changed

docs/error-messages/compiler-errors-2/compiler-error-c2611.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3f2d5253-f24f-4724-83d0-6b2aa6a4e551
88
---
99
# Compiler Error C2611
1010

11-
'token' : illegal following '~' (expected identifier)
11+
> 'token' : illegal following '~' (expected identifier)
1212
1313
The token is not an identifier.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2612.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6faacfd6-4455-41a2-808e-0f6799f84d6d
88
---
99
# Compiler Error C2612
1010

11-
trailing 'char' illegal in base/member initializer list
11+
> trailing 'char' illegal in base/member initializer list
1212
1313
A character appears after the last base or member in an initializer list.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2613.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: d8fa7b32-08cb-4bb4-96e7-c04dded0e917
88
---
99
# Compiler Error C2613
1010

11-
trailing ',' illegal in base class list
11+
> trailing ',' illegal in base class list
1212
1313
A comma appears after the last base in a base class list.

docs/error-messages/compiler-errors-2/compiler-error-c2614.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ helpviewer_keywords: ["C2614"]
77
---
88
# Compiler Error C2614
99

10-
'class1' : illegal member initialization: 'class2' is not a base or member
10+
> 'class1' : illegal member initialization: 'class2' is not a base or member
1111
1212
Only member or base classes can appear in the initialization list for a class or structure.
1313

docs/error-messages/compiler-errors-2/compiler-error-c2616.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 8d0c02d6-a0b0-4135-b10f-438d67da68c6
88
---
99
# Compiler Error C2616
1010

11-
'conversion' : cannot implicitly convert a non-lvalue 'type1' to a 'type2' that is not const
11+
> 'conversion' : cannot implicitly convert a non-lvalue 'type1' to a 'type2' that is not const
1212
1313
A reference cannot be initialized from a non-lvalue.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2617.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d6a435d2-7d95-4dbf-ad4a-abe4744f63e8
88
---
99
# Compiler Error C2617
1010

11-
'function' : inconsistent return statement
11+
> 'function' : inconsistent return statement
1212
1313
The specified function does not have a declared return type, and a previous return statement did not supply a value.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2619.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: c826f8ab-d66a-4b79-a0b2-93b0af8c41ac
88
---
99
# Compiler Error C2619
1010

11-
'identifier': a static data member is not allowed in an anonymous struct or union
11+
> 'identifier': a static data member is not allowed in an anonymous struct or union
1212
1313
A member of an anonymous struct or union is declared **`static`**.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2624.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 32f2ec15-a7cd-4049-a64b-131746d3152b
88
---
99
# Compiler Error C2624
1010

11-
local classes cannot be used to declare 'extern' variables
11+
> local classes cannot be used to declare 'extern' variables
1212
1313
A local class or structure cannot be used to declare **`extern`** variables.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2626.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 4c283ad0-251b-4571-bc18-468b9836746f
88
---
99
# Compiler Error C2626
1010

11-
'identifier': a private or protected data member is not allowed in an anonymous struct or union
11+
> 'identifier': a private or protected data member is not allowed in an anonymous struct or union
1212
1313
A member of an anonymous struct or union must have public access.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2627.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 7fc6c5ac-c7c9-4f0b-ad52-f52252526458
88
---
99
# Compiler Error C2627
1010

11-
'function' : member function not allowed in anonymous union
11+
> 'function' : member function not allowed in anonymous union
1212
1313
An [anonymous union](../../cpp/unions.md#anonymous_unions) cannot have member functions.
1414

0 commit comments

Comments
 (0)