Skip to content

Commit 245c698

Browse files
authored
Add blockquotes for error messages in range [C2231, C2260]
1 parent 21903da commit 245c698

22 files changed

+22
-22
lines changed

docs/error-messages/compiler-errors-1/compiler-error-c2231.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 677c5c66-d30f-4c3b-bbb9-760858d56477
88
---
99
# Compiler Error C2231
1010

11-
'.' : left operand points to 'class-key', use '->'
11+
> '.' : left operand points to 'class-key', use '->'
1212
1313
The operand to the left of the member-selection operation (.) is a pointer instead of a class, structure, or union.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2232.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 76f302b7-30a7-4a81-9a39-b4edde33b54c
88
---
99
# Compiler Error C2232
1010

11-
'->' : left operand has 'class-key' type, use '.'
11+
> '->' : left operand has 'class-key' type, use '.'
1212
1313
The operand to the left of the `->` operator is not a pointer. Use the period (.) operator for a class, structure, or union.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2233.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 236bdf0b-9607-4f26-a249-d8def0b1333c
88
---
99
# Compiler Error C2233
1010

11-
'identifier' : arrays of objects containing zero-size arrays are illegal
11+
> 'identifier' : arrays of objects containing zero-size arrays are illegal
1212
1313
Each object in an array must contain at least one element.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2234.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: cfa42458-c803-4717-a017-9eca1c0cbfb0
88
---
99
# Compiler Error C2234
1010

11-
'name' : arrays of references are illegal
11+
> 'name' : arrays of references are illegal
1212
1313
Because pointers to references are not allowed, arrays of references are not possible.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2236.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0b6771a7-a783-4729-9c3d-7a3339c432cc
88
---
99
# Compiler Error C2236
1010

11-
unexpected token 'identifier'. Did you forget a ';'?
11+
> unexpected token 'identifier'. Did you forget a ';'?
1212
1313
The identifier is already defined as a type and cannot be overridden by a user-defined type.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2238.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3d53060c-d6b7-4603-b9cf-d7c65eb64cd2
88
---
99
# Compiler Error C2238
1010

11-
unexpected token(s) preceding 'token'
11+
> unexpected token(s) preceding 'token'
1212
1313
An incorrect token was found.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2241.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 2f4e2c2c-b95c-4afe-bbe0-4214cd39d140
88
---
99
# Compiler Error C2241
1010

11-
'identifier' : member access is restricted
11+
> 'identifier' : member access is restricted
1212
1313
Code attempts to access a private or protected member.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2242.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: e1b687ed-4460-4c26-9f7e-c43e65c6dd65
88
---
99
# Compiler Error C2242
1010

11-
typedef name cannot follow class/struct/union
11+
> typedef name cannot follow class/struct/union
1212
1313
A **`typedef`** name appears at the end of a qualified name.

docs/error-messages/compiler-errors-1/compiler-error-c2243.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: b90065bb-d251-4ba9-8b4c-280ee13fa9c0
88
---
99
# Compiler Error C2243
1010

11-
'conversion type' conversion from 'type1' to 'type2' exists, but is inaccessible
11+
> 'conversion type' conversion from 'type1' to 'type2' exists, but is inaccessible
1212
1313
Access protection (**`protected`** or **`private`**) prevented conversion from a pointer to a derived class to a pointer to the base class.
1414

docs/error-messages/compiler-errors-1/compiler-error-c2244.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d9911c12-ceb5-4f93-ac47-b44a485215c2
88
---
99
# Compiler Error C2244
1010

11-
'identifier' : unable to match function definition to an existing declaration
11+
> 'identifier' : unable to match function definition to an existing declaration
1212
1313
An unusual use of the unary + operator was used in front of a function call that did not have parenthesis.
1414

0 commit comments

Comments
 (0)