Skip to content

Commit 9f8372c

Browse files
authored
Add blockquotes for error messages in range [C2731, C2760]
1 parent d54db33 commit 9f8372c

20 files changed

+20
-20
lines changed

docs/error-messages/compiler-errors-2/compiler-error-c2731.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 9b563999-febd-4582-9147-f355083c091e
88
---
99
# Compiler Error C2731
1010

11-
'identifier' : function cannot be overloaded
11+
> 'identifier' : function cannot be overloaded
1212
1313
The functions `main`, `WinMain`, `DllMain`, and `LibMain` cannot be overloaded.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2732.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 01b7ad2c-93cf-456f-a4c0-c5f2fdc7c07c
88
---
99
# Compiler Error C2732
1010

11-
linkage specification contradicts earlier specification for 'function'
11+
> linkage specification contradicts earlier specification for 'function'
1212
1313
The function is already declared with a different linkage specifier.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2734.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: e53a77b7-825c-42d1-a655-90e1c93b833e
88
---
99
# Compiler Error C2734
1010

11-
'identifier' : const object must be initialized if not extern
11+
> 'identifier' : const object must be initialized if not extern
1212
1313
The identifier is declared **`const`** but not initialized or **`extern`**.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2735.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 6ce45600-7148-4bc0-8699-af0ef137571e
88
---
99
# Compiler Error C2735
1010

11-
'keyword' keyword is not permitted in formal parameter type specifier
11+
> 'keyword' keyword is not permitted in formal parameter type specifier
1212
1313
The keyword is invalid in this context.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2736.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 95a6bc28-c0cb-49dc-87e6-e993dbbba881
88
---
99
# Compiler Error C2736
1010

11-
'keyword' keyword is not permitted in cast
11+
> 'keyword' keyword is not permitted in cast
1212
1313
The keyword is invalid in a cast.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2738.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 896b4640-1ee0-4cd8-9910-de3efa30006a
88
---
99
# Compiler Error C2738
1010

11-
'declaration' : is ambiguous or is not a member of 'type'
11+
> 'declaration' : is ambiguous or is not a member of 'type'
1212
1313
A function was declared incorrectly.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2739.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 5b63e435-7631-43d7-805e-f2adefb7e517
88
---
99
# Compiler Error C2739
1010

11-
'number' : explicit managed or WinRT array dimensions must be between 1 and 32
11+
> 'number' : explicit managed or WinRT array dimensions must be between 1 and 32
1212
1313
An array dimension was not between 1 and 32.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2743.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 644cd444-21d2-471d-a176-f5f52c5a0b73
88
---
99
# Compiler Error C2743
1010

11-
'type' : cannot catch a native type with __clrcall destructor or copy constructor
11+
> 'type' : cannot catch a native type with __clrcall destructor or copy constructor
1212
1313
A module compiled with **/clr** attempted to catch an exception of native type and where the type's destructor or copy constructor uses `__clrcall` calling convention.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2745.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: a1c45f13-7667-4678-aa16-265304a449a1
88
---
99
# Compiler Error C2745
1010

11-
'token' : this token cannot be converted to an identifier
11+
> 'token' : this token cannot be converted to an identifier
1212
1313
Identifiers must be comprised of legal characters.
1414

docs/error-messages/compiler-errors-2/compiler-error-c2748.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: b63ac78b-a200-499c-afea-15af1a1e819e
88
---
99
# Compiler Error C2748
1010

11-
managed or WinRT array creation must have array size or array initializer
11+
> managed or WinRT array creation must have array size or array initializer
1212
1313
A managed or WinRT array was ill formed. For more information, see [array](../../extensions/arrays-cpp-component-extensions.md).
1414

0 commit comments

Comments
 (0)