Skip to content

Commit 409e8a0

Browse files
authored
Add blockquotes for error messages in range [C2431, C2460]
1 parent 760be0b commit 409e8a0

18 files changed

+18
-18
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 88a5b648-c89f-47d1-a20e-63231ab4f0f7
88
---
99
# Compiler Error C2431
1010

11-
illegal index register in 'identifier'
11+
> illegal index register in 'identifier'
1212
1313
The ESP register is scaled or used as both index and base register. The SIB encoding for the x86 processor does not allow either.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 0e3326e8-cab1-45a5-b48d-61edd33793e8
88
---
99
# Compiler Error C2432
1010

11-
illegal reference to 16-bit data in 'identifier'
11+
> illegal reference to 16-bit data in 'identifier'
1212
1313
A 16-bit register is used as an index or base register. The compiler does not support referencing 16-bit data. 16-bit registers cannot be used as index or base registers when compiling for 32-bit code.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: ca4cc813-bc1d-4c0a-9a2c-3a5fe673d084
88
---
99
# Compiler Error C2436
1010

11-
'identifier' : member function or nested class in constructor initializer list
11+
> 'identifier' : member function or nested class in constructor initializer list
1212
1313
Member functions or local classes in the constructor initializer list cannot be initialized.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 2d2b3c6c-856a-4b27-ae10-64813b3e5483
88
---
99
# Compiler Error C2437
1010

11-
'identifier' : already initialized
11+
> 'identifier' : already initialized
1212
1313
An object can be initialized only once.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3a0ab3ba-d0e4-4d8f-971d-e503397cc827
88
---
99
# Compiler Error C2438
1010

11-
'identifier' : cannot initialize static class data via constructor
11+
> 'identifier' : cannot initialize static class data via constructor
1212
1313
A constructor is used to initialize a static member of a class. Static members must be initialized in a definition outside the class declaration.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 3c5dbe5c-b7d3-4bb0-8619-92f6e280461e
88
---
99
# Compiler Error C2439
1010

11-
'identifier' : member could not be initialized
11+
> 'identifier' : member could not be initialized
1212
1313
A class, structure, or union member cannot be initialized.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 315330d5-24bc-4193-a531-0642095be58f
88
---
99
# Compiler Error C2443
1010

11-
operand size conflict
11+
> operand size conflict
1212
1313
The instruction requires operands to be the same size.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6339ed82-caad-45d3-a8ff-6c746589fd03
88
---
99
# Compiler Error C2444
1010

11-
'identifier' : used ANSI prototype, found 'type', expected '{' or ';'
11+
> 'identifier' : used ANSI prototype, found 'type', expected '{' or ';'
1212
1313
The function prototype is followed by a type.
1414

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ ms.assetid: 4f70dd11-6baf-4b92-9a08-f88f65ffa199
88
---
99
# Compiler Error C2446
1010

11-
'operator' : no conversion from 'type1' to 'type2'
11+
> 'operator' : no conversion from 'type1' to 'type2'
1212
1313
The compiler cannot convert `type1` to `type2`. The conversion may not make sense because it violates C/C++ semantics.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: d1bd6e9a-ee42-4510-ae5e-6b0378f7b931
88
---
99
# Compiler Error C2447
1010

11-
'{' : missing function header (old-style formal list?)
11+
> '{' : missing function header (old-style formal list?)
1212
1313
The compiler encountered an unexpected open brace at global scope. In most cases, this is caused by a badly-formed function header, a misplaced declaration, or a stray semi-colon. To resolve this issue, verify that the open brace follows a correctly-formed function header, and is not preceded by a declaration or a stray semi-colon.
1414

0 commit comments

Comments
 (0)