Skip to content

Commit e6f7b5c

Browse files
authored
Add blockquotes for error messages in range [C2061, C2080]
1 parent df4242d commit e6f7b5c

15 files changed

+15
-15
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: b0e61c0c-a205-4820-b9aa-301d6c6fe6eb
88
---
99
# Compiler Error C2061
1010

11-
syntax error : identifier 'identifier'
11+
> syntax error : identifier 'identifier'
1212
1313
The compiler found an identifier where it wasn't expected. Make sure that `identifier` is declared before you use it.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6cc98353-2ddf-43ab-88a2-9cc91cdd6033
88
---
99
# Compiler Error C2062
1010

11-
type 'type' unexpected
11+
> type 'type' unexpected
1212
1313
The compiler did not expect a type name.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0a90c18f-4029-416a-9128-e8713b53e6f1
88
---
99
# Compiler Error C2063
1010

11-
'identifier' : not a function
11+
> 'identifier' : not a function
1212
1313
The identifier is used as a function but not declared as a function.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6cda05da-f437-4f50-9813-ae69538713a3
88
---
99
# Compiler Error C2064
1010

11-
term does not evaluate to a function taking N arguments
11+
> term does not evaluate to a function taking N arguments
1212
1313
A call is made to a function through an expression. The expression does not evaluate to a pointer to a function that takes the specified number of arguments.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: f1efc63f-948a-410b-bf6e-ba250d52cd38
88
---
99
# Compiler Error C2066
1010

11-
cast to function type is illegal
11+
> cast to function type is illegal
1212
1313
In ANSI C, it is not legal to cast between a function pointer and a data pointer.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 97cab473-a713-489f-8536-ca2cc5792b8c
88
---
99
# Compiler Error C2067
1010

11-
cast to array type is illegal
11+
> cast to array type is illegal
1212
1313
An object was cast to an array type.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 0c87445a-9eed-4917-a733-f08217f2d64d
88
---
99
# Compiler Error C2069
1010

11-
cast of 'void' term to non-'void'
11+
> cast of 'void' term to non-'void'
1212
1313
Type **`void`** cannot be cast to any other type.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 4c8dea63-1227-4aba-be26-2462537f86fb
88
---
99
# Compiler Error C2070
1010

11-
'type': illegal sizeof operand
11+
> 'type': illegal sizeof operand
1212
1313
The [sizeof](../../cpp/sizeof-operator.md) operator requires an expression or type name.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: f8c09255-a5c4-47e3-8089-3d875ae43cc5
88
---
99
# Compiler Error C2071
1010

11-
'identifier' : illegal storage class
11+
> 'identifier' : illegal storage class
1212
1313
`identifier` was declared with an invalid [storage class](../../c-language/c-storage-classes.md). This error can be caused when more than one storage class is specified for an identifier, or when the definition is incompatible with the storage class declaration.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 0b19a847-61dd-4bc3-b54d-108a637a4424
88
---
99
# Compiler Error C2072
1010

11-
'identifier' : initialization of a function
11+
> 'identifier' : initialization of a function
1212
1313
A function initializer was specified incorrectly.

0 commit comments

Comments
 (0)