Skip to content

Commit cbd976c

Browse files
authored
Add blockquotes for error messages in range [C2201, C2230]
1 parent 21903da commit cbd976c

19 files changed

+19
-19
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 5497df43-86f6-43d5-b6cb-723c4c589b10
88
---
99
# Compiler Error C2203
1010

11-
delete operator cannot specify bounds for an array
11+
> delete operator cannot specify bounds for an array
1212
1313
With the **/Za** (ANSI) option, the **`delete`** operator can delete an entire array but not parts or specific members of the array.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: bbe506d4-7863-44af-8709-161881c4b4ba
88
---
99
# Compiler Error C2204
1010

11-
'type' : type definition found within parentheses
11+
> 'type' : type definition found within parentheses
1212
1313
The type is defined as an operand or in prototype scope.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: bfc19840-4a48-4da5-8e69-7069989f1d2c
88
---
99
# Compiler Error C2205
1010

11-
'identifier' : cannot initialize extern variables with block scope
11+
> 'identifier' : cannot initialize extern variables with block scope
1212
1313
An **`extern`** variable cannot be initialized in a function.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d7fba68b-aa28-4885-a9a0-27107358f066
88
---
99
# Compiler Error C2206
1010

11-
'function' : typedef cannot be used for function definition
11+
> 'function' : typedef cannot be used for function definition
1212
1313
A **`typedef`** is used to define a function type.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: d7d7b537-68f1-420a-9835-b5b6f2cb5cfd
88
---
99
# Compiler Error C2207
1010

11-
'member': a member of a class template cannot acquire a function type
11+
> 'member': a member of a class template cannot acquire a function type
1212
1313
The `member` of the class template was previously parsed as a non-static data member. It cannot be redefined as a member function.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9ae704bc-bf70-45f1-8e47-0470f21edd4e
88
---
99
# Compiler Error C2208
1010

11-
'type' : no members defined using this type
11+
> 'type' : no members defined using this type
1212
1313
An identifier resolving to a type name is in an aggregate declaration, but the compiler cannot declare a member.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 3fdab304-272c-4d07-bfd4-fad75170e536
88
---
99
# Compiler Error C2212
1010

11-
'identifier' : __based not available for pointers to functions
11+
> 'identifier' : __based not available for pointers to functions
1212
1313
Pointers to functions cannot be declared **`__based`**. If you need code-based data, use the **`__declspec`** keyword or the `data_seg` pragma.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ff012278-7f3b-4d49-aaed-2349756f6225
88
---
99
# Compiler Error C2213
1010

11-
'modifier' : illegal argument to __based
11+
> 'modifier' : illegal argument to __based
1212
1313
The argument modifying **`__based`** is invalid.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 250f6bdc-a5e1-495f-a1e8-6e8e7021ad9d
88
---
99
# Compiler Error C2216
1010

11-
'keyword1' cannot be used with ' keyword2'
11+
> 'keyword1' cannot be used with ' keyword2'
1212
1313
Two keywords that are mutually exclusive were used together.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 1ce1e3f5-4171-4376-804d-967f7e612935
88
---
99
# Compiler Error C2217
1010

11-
'attribute1' requires 'attribute2'
11+
> 'attribute1' requires 'attribute2'
1212
1313
The first function attribute requires the second attribute.
1414

0 commit comments

Comments
 (0)