Skip to content

Commit 887af19

Browse files
authored
Add blockquotes for error messages in range [C2081, C2100]
1 parent df4242d commit 887af19

18 files changed

+18
-18
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 7db9892d-364d-4178-a49d-f8398ece09a0
88
---
99
# Compiler Error C2081
1010

11-
'identifier' : name in formal parameter list illegal
11+
> 'identifier' : name in formal parameter list illegal
1212
1313
The identifier caused a syntax error.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 87a6d442-157c-46e8-9bff-8388f8338ae0
88
---
99
# Compiler Error C2082
1010

11-
redefinition of formal parameter 'identifier'
11+
> redefinition of formal parameter 'identifier'
1212
1313
A formal parameter to a function is redeclared within the function body. To resolve the error, remove the redefinition.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 5fc4f931-eab6-4d8d-a3ee-3b8e11e64b18
88
---
99
# Compiler Error C2083
1010

11-
struct/union comparison illegal
11+
> struct/union comparison illegal
1212
1313
A structure or union is compared directly with another user-defined type. This is not allowed unless a comparison operator has been defined or a conversion to a scalar type exists.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 990b107f-3721-4851-ae8b-4b69a8c149ed
88
---
99
# Compiler Error C2084
1010

11-
function '*function*' already has a body
11+
> function '*function*' already has a body
1212
1313
The function has already been defined.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0a86785c-8e6f-481b-8c7b-412220c1950d
88
---
99
# Compiler Error C2085
1010

11-
'identifier' : not in formal parameter list
11+
> 'identifier' : not in formal parameter list
1212
1313
The identifier was declared in a function definition but not in the formal parameter list. (ANSI C only)
1414

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

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

10-
'identifier' : redefinition
10+
> 'identifier' : redefinition
1111
1212
The identifier is defined more than once, or a subsequent declaration differs from a previous one.
1313

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 89761e83-415a-4468-a4c6-b6dedfd1dd6a
88
---
99
# Compiler Error C2087
1010

11-
'identifier' : missing subscript
11+
> 'identifier' : missing subscript
1212
1313
The definition of an array with multiple subscripts is missing a subscript value for a dimension higher than one.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: b93f7094-185b-423d-8bb9-507cd757dbf5
88
---
99
# Compiler Error C2088
1010

11-
'operator' : illegal for 'class-key'
11+
> 'operator' : illegal for 'class-key'
1212
1313
The operator was not defined for the structure or union. This error is only valid for C code.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 7c777775-5535-4eea-b6a2-340b71af9560
88
---
99
# Compiler Error C2089
1010

11-
'identifier' : 'class-key' too large
11+
> 'identifier' : 'class-key' too large
1212
1313
The specified structure or union exceeds the 4GB limit.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: e8176e55-382b-453d-aa27-6597f0274afd
88
---
99
# Compiler Error C2090
1010

11-
function returns array
11+
> function returns array
1212
1313
A function cannot return an array. Return a pointer to an array instead.
1414

0 commit comments

Comments
 (0)